Browse Source

Solved part2

Piotr Czajkowski 3 năm trước cách đây
mục cha
commit
6e19ab9bc5
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      day22/day22.go

+ 1 - 1
day22/day22.go

@@ -166,7 +166,7 @@ func play2(decks [2][]int) (int, []int) {
 	if len(decks[0]) == 0 {
 		return 1, decks[1]
 	}
-	return 1, decks[0]
+	return 0, decks[0]
 }
 
 func calculate(deck []int) int {