Skip to content

Commit

Permalink
a292
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhengwei committed Dec 12, 2016
1 parent dfb6b29 commit 3cec72e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ leetcode 题解

[283. Move Zeroes](Solution/283.md)

[292. Nim Game](Solution/292.md)

[295. Find Median from Data Stream](Solution/295.md)

[342. Power of Four](Solution/342.md)
Expand Down
7 changes: 7 additions & 0 deletions Solution/292.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#292. Nim Game
[题目链接](https://leetcode.com/problems/nim-game/)
```c
bool canWinNim(int n) {
return (n%4);
}
```

0 comments on commit 3cec72e

Please sign in to comment.