Skip to content

Commit bb8ce63

Browse files
authored
Merge pull request satwikkansal#237 from imba-tjd/patch-3
fix indentation
2 parents f082e9f + ac63a4f commit bb8ce63

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2569,17 +2569,17 @@ None
25692569
```py
25702570
def some_recursive_func(a):
25712571
if a[0] == 0:
2572-
return
2572+
return
25732573
a[0] -= 1
25742574
some_recursive_func(a)
25752575
return a
25762576
25772577
def similar_recursive_func(a):
2578-
if a == 0:
2579-
return a
2580-
a -= 1
2581-
similar_recursive_func(a)
2578+
if a == 0:
25822579
return a
2580+
a -= 1
2581+
similar_recursive_func(a)
2582+
return a
25832583
```
25842584
25852585
**Output:**

0 commit comments

Comments
 (0)