pull/694/merge
Khari Thomas 1 week ago committed by GitHub
commit 675c8d8371
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -59,7 +59,7 @@ Many grid-based games can be modeled as a matrix, such as Tic-Tac-Toe, Sudoku, C
Transposing a matrix in Python is simply:
```py
transposed_matrix = zip(*matrix)
transposed_matrix = list(zip(*matrix))
```
## Essential questions

Loading…
Cancel
Save