Created
March 23, 2020 16:03
-
-
Save xkumiyu/b2e3c2feca1166b0522797da5afa42a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# faster | |
[[None] * N for _ in range(N)] | |
# slower | |
[[None for _ in range(N)] for _ in range(N)] | |
# NG | |
[[None] * N] * N |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment