interviews icon indicating copy to clipboard operation
interviews copied to clipboard

Everything you need to know to get the job.

Results 126 interviews issues
Sort by recently updated
recently updated
newest added

**Competitive Programming 3 - Steven Halim & Felix Halim** has a newer edition - **Competitive Programming 4 - Steven Halim & Felix Halim** containing Book - 1 and Book -...

It's better if the chapters CTCI folder are renamed so that they're sorted numerically.

Hi fixed the opposite parenthesis issue.

else if(s.charAt(i) == ')' && !stack.isEmpty() && stack.peek() == ')') { } else if(s.charAt(i) == ']' && !stack.isEmpty() && stack.peek() == ']') { } else if(s.charAt(i) == '}' && !stack.isEmpty()...