Skip to content

Instantly share code, notes, and snippets.

@douglascamata
Created June 1, 2012 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save douglascamata/2854647 to your computer and use it in GitHub Desktop.
Save douglascamata/2854647 to your computer and use it in GitHub Desktop.
matriz = []
for i in range(1,n):
coluna = []
for j in range(1,n):
coluna.append(1)
matriz.append(coluna)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment