Skip to content

Commit 3d1d616

Browse files
committed
indent to spaces
1 parent 66f1107 commit 3d1d616

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Diff for: dynamic_programming/decode_ways.py

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ def num_decodings(s: str):
3232
curr = second_last
3333
else:
3434
return 0
35-
3635
elif 11 <= int(s[i-1:i+1]) <= 26:
3736
curr = second_last + last
3837
else:

0 commit comments

Comments
 (0)