1 2 3 4 5 6
// Laufzeit: O(#game) bool WinNimm(vector<int> game) { int result = 0; for(int s: game) result ^= s; return s > 0; }