Skip to content

Commit 65c27ab

Browse files
authored
n to number
1 parent 99e0bec commit 65c27ab

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

dynamic_programming/minimum_steps_to_one.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,15 @@
2929

3030
def min_steps_to_one(number: int) -> int:
3131
"""
32-
Implemented using tabulation.
33-
34-
DocTests
32+
Minimum steps to 1 implemented using tabulation.
3533
>>> min_steps_to_one(10)
3634
3
37-
3835
>>> min_steps_to_one(15)
3936
4
40-
4137
>>> min_steps_to_one(6)
4238
2
4339
44-
:param n:
40+
:param number:
4541
:return int:
4642
"""
4743

0 commit comments

Comments
 (0)