Skip to content

Instantly share code, notes, and snippets.

@mainroach
Created March 21, 2017 15:44
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 mainroach/c8a686b6197a1a170cb3ec0d08be0c87 to your computer and use it in GitHub Desktop.
Save mainroach/c8a686b6197a1a170cb3ec0d08be0c87 to your computer and use it in GitHub Desktop.
def pascalRow(n):
line=[1]
for k in range(n):
line.append(line[k] * (n-k) / (k+1))
return line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment