301. Remove Invalid Parentheses
bfs using to find first valid string by currentStr[:j] + currentStr[j + 1:]
Read more ⟶
977. Squares of a Sorted Array
use two pointers and compare left and right num using abs
Read more ⟶
15. 3Sum
sort array, iterate over, avoid duplicates, move borders
Read more ⟶
18. 4Sum
fix the first two numbers using nested loops find the other two numbers using the two-pointer approach
Read more ⟶