fix indentation

This commit is contained in:
谭九鼎 2020-10-27 12:19:37 +08:00 committed by GitHub
parent f082e9f22a
commit ac63a4fb3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

10
README.md vendored
View File

@ -2569,17 +2569,17 @@ None
```py
def some_recursive_func(a):
if a[0] == 0:
return
return
a[0] -= 1
some_recursive_func(a)
return a
def similar_recursive_func(a):
if a == 0:
return a
a -= 1
similar_recursive_func(a)
if a == 0:
return a
a -= 1
similar_recursive_func(a)
return a
```
**Output:**