Back
Arrays & Strings
Question 1 of 128% Complete
Medium
Match problem to preferred technique:
Problems
1
3Sum in array
2
Group anagrams
3
Longest palindromic substring
4
Minimum window substring
Patterns
A
Hash by sorted string or counts
B
Expand around center (or Manacher)
C
Sort then two pointers
D
Variable window with frequency map