Skip to content

Instantly share code, notes, and snippets.

@ssundarraj
Last active January 1, 2016 19:19
Show Gist options
  • Save ssundarraj/fe3969d88842030d06de to your computer and use it in GitHub Desktop.
Save ssundarraj/fe3969d88842030d06de to your computer and use it in GitHub Desktop.
# One Dimensional array:
n = 10
a = [0] * n
# Two Dimensional array:
N = 5
M = 4
A = [[0] * N for _ in range(M)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment