Easy
You are playing Nim: a heap of n stones, players alternate removing 1 to 3 stones, and whoever removes the last stone wins. You move first and both play optimally. Return true if you can win.
Input: n = 4 Output: false
Input: n = 1 Output: true
Input: n = 7 Output: true