Link: https://leetcode.com/problems/reverse-integer/
Solution:
Topics: bit mask
Intuition
Great exercise in modulus and integer division! Very similar to Integer to english words. Some edge cases to consider, but overall not very challenging. I will mark it as hard because I tripped over a couple edge cases when testing the code.
Implementation