zoukankan      html  css  js  c++  java
  • 292. Nim Game(easy)

    You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 stones. The one who removes the last stone will be the winner. You will take the first turn to remove the stones.

    Both of you are very clever and have optimal strategies for the game. Write a function to determine whether you can win the game given the number of stones in the heap.

    For example, if there are 4 stones in the heap, then you will never win the game: no matter 1, 2, or 3 stones you remove, the last stone will always be removed by your friend.

    /*
    1:   赢
    2:  赢
    3:  赢
    4: 不赢
    5: 赢
    6: 赢
    7: 赢
    8: 不赢
    */
    class Solution {
    public:
        bool canWinNim(int n) {
            if (n % 4 == 0){
                return false;
            }else{
                return true;
            }
        }
    };

    好像很简单的样子。。

  • 相关阅读:
    css float
    java基础77
    java基础75
    java基础73
    java基础72
    java基础71
    java基础630
    django-模版学习
    Django--- 网页显示时间
    创建一个django项目
  • 原文地址:https://www.cnblogs.com/simplepaul/p/7955621.html
Copyright © 2011-2022 走看看