Skip to content

Commit d8187b4

Browse files
Update len_nth_word_from_end.py
1 parent fdf4e94 commit d8187b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Data Structures and Algorithms/len_nth_word_from_end.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ def len_nth_word_from_end_2(str, num):
4646

4747
s = "fly me to the moon "
4848

49-
print(len_nth_word_from_end_len_1(s, 5))
50-
print(len_nth_word_from_end_len_2(s, 3))
49+
print(len_nth_word_from_end_1(s, 5))
50+
print(len_nth_word_from_end_2(s, 3))

0 commit comments

Comments
 (0)