leetcode 292. Nim Game

    xiaoxiao2025-08-05  11

    class Solution { public: bool canWinNim(int n) { return n % 4 != 0; } };
    转载请注明原文地址: https://ju.6miu.com/read-1301441.html
    最新回复(0)