max-repeating-no-empty-word-guard

Status: IN

`longestAwesomeSubstring` (the maximum repeating substring solver) has no guard against empty `word` input — `"" in sequence` is always `True`, causing an infinite loop. Correctness depends on the LeetCode constraint `len(word) >= 1`.

Source: entries/2026/06/06/maximum-repeating-substring-solution.md

JSON