Nim game: Difference between revisions

Content deleted Content added
A simple Nim game challenge, plus implementation in AsciiDots - more implementations (python, javascript, maybe some others) coming very soon.
 
No edit summary
Line 1:
{{draft task}}
Nim is a simple, unwinnable game. Thewhere the second player - if they know the trick - will always win.
The game is simple, and has only 3 rules.
 
* start with 12 tokens
Line 7:
* the player who takes the last token wins.
 
To win every time, the second player simply takes 4 minus the number the first player took. So if the first player takes 1, the second takes 3 - if the first player takes 2, the second should take 2 - and if the first player takes 3, the second player will take 1.
 
;Task: