CodingInterview > Strings > Flashcards
Count if Characters have repeated in o(n) time and o(1) space
Use integer and use bit operations to set the bit as only 26 characters are available
Avoid using substring if possible
Whenever you use substring, it might be counted as o(n^2) solution.