Skip to content

Commit 639e922

Browse files
Update sol1.py
1 parent dc88339 commit 639e922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project_euler/problem_345/sol1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def solve(
7171
finds the max sum for array arr starting with row number row_ind, and with columns
7272
included in include_set. cache is used for caching intermediate results.
7373
74-
>>> solve(np.array([[1, 2], [3,4]]), 0, {0, 1}, {})
74+
>>> solve(np.array([[1, 2], [3, 4]]), 0, {0, 1}, {})
7575
np.int64(5)
7676
"""
7777

0 commit comments

Comments
 (0)