Skip to content

Commit

Permalink
Merge branch 'testnet3' into mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
d0cd committed Apr 2, 2024
2 parents b3c3714 + 55fff52 commit f6fde0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/tictactoe/src/main.leo
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ program tictactoe.aleo {
return
(b.r1.c1 == p && b.r1.c2 == p && b.r1.c3 == p) || // row 1
(b.r2.c1 == p && b.r2.c2 == p && b.r2.c3 == p) || // row 2
(b.r3.c1 == p && b.r3.c3 == p && b.r3.c3 == p) || // row 3
(b.r3.c1 == p && b.r3.c2 == p && b.r3.c3 == p) || // row 3
(b.r1.c1 == p && b.r2.c1 == p && b.r3.c1 == p) || // column 1
(b.r1.c2 == p && b.r2.c3 == p && b.r3.c2 == p) || // column 2
(b.r1.c2 == p && b.r2.c2 == p && b.r3.c2 == p) || // column 2
(b.r1.c3 == p && b.r2.c3 == p && b.r3.c3 == p) || // column 3
(b.r1.c1 == p && b.r2.c2 == p && b.r3.c3 == p) || // diagonal
(b.r1.c3 == p && b.r2.c2 == p && b.r3.c1 == p); // other diagonal
Expand Down

0 comments on commit f6fde0d

Please sign in to comment.