Skip to content

Commit

Permalink
博弈
Browse files Browse the repository at this point in the history
  • Loading branch information
Azureki committed Apr 16, 2019
1 parent 8c2db95 commit e317c06
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions 1025. Divisor Game/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
func divisorGame(N int) bool {
// 2,4,6
// 3,5,
if N&1 == 0 {
return true

}
return false

}

0 comments on commit e317c06

Please sign in to comment.