125. Valid Palindrome


check low and high chars, skipping non alpa-nums
Read more ⟶

226. Invert Binary Tree


traverse through tree and change leafs
Read more ⟶

21. Merge Two Sorted Lists


use sentinel for new list. traverse, compare and set
Read more ⟶

13. Roman to Integer


if current bigger or equal then previous -> make sum, otherwise subtract
Read more ⟶