Skip to content

Instantly share code, notes, and snippets.

@xkumiyu
Created March 23, 2020 16:03
Show Gist options
  • Save xkumiyu/b2e3c2feca1166b0522797da5afa42a8 to your computer and use it in GitHub Desktop.
Save xkumiyu/b2e3c2feca1166b0522797da5afa42a8 to your computer and use it in GitHub Desktop.
# 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