Leetcode 2000 Reverse Prefix of Word
Intuition
Find position of ch (if any) then use two pointers to swap characters until string is reveresed from beginning to index of ch
Approach
Start by checking each character for ch. If we find it, that's where our right pointer will start. Our le...
blog.kennycarneal.com1 min read