DEV Community

Discussion on: Longest substring without repeating characters, solving Google interview question.

Collapse
 
worsnupd profile image
Daniel Worsnup

Great write-up, thanks so much for sharing! It could be worth mentioning that the general approach used here is called a "sliding window" and is very common among solutions to competitive programming problems.