1. /**
    2. * @param n: an integer
    3. * @return: whether you can win the game given the number of stones in the heap
    4. */
    5. func CanWinBash(n int) bool {
    6. // Write your code here
    7. if n % 4 == 0{
    8. return false
    9. }
    10. return true
    11. }