Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 123 Bytes

292.md

File metadata and controls

7 lines (7 loc) · 123 Bytes

#292. Nim Game 题目链接

bool canWinNim(int n) {
    return (n%4);
}