Skip to content

Commit c191660

Browse files
authored
black format
1 parent c534e77 commit c191660

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dynamic_programming/minimum_cost_path.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
def minimum_cost_path(matrix: List[List[int]]) -> int:
7-
'''
7+
"""
88
Find the minimum cost traced by all possible paths from top left to bottom right in
99
a given matrix
1010
@@ -13,7 +13,7 @@ def minimum_cost_path(matrix: List[List[int]]) -> int:
1313
1414
>>> minimum_cost_path([[2, 1, 4], [2, 1, 3], [3, 2, 1]])
1515
7
16-
'''
16+
"""
1717

1818
# preprocessing the first row
1919
for i in range(1, len(matrix[0])):

0 commit comments

Comments
 (0)