Skip to content

Commit

Permalink
corrected typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Datamine committed Oct 9, 2017
1 parent f326936 commit e9773d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Problems/015/solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
def main():
# dynamic programming problem. The trick is to realize that the number of paths
# to a given square is the sum of the number of paths to square to the left
# and to the right. then proceed iteratively and fill out the grid.
# and to the above. then proceed iteratively and fill out the grid.
grid_size = 20
grid = [[None] * 20 for i in range(20)]

Expand Down

0 comments on commit e9773d8

Please sign in to comment.