Fix Python code styles.

Update hash_map.
This commit is contained in:
Yudong Jin
2023-02-03 20:03:30 +08:00
parent 15efaca85d
commit a95fe26303
8 changed files with 38 additions and 72 deletions

View File

@ -855,10 +855,10 @@ $$
```python title="space_complexity.py"
""" 线性阶(递归实现) """
def linearRecur(n):
def linear_recur(n):
print("递归 n =", n)
if n == 1: return
linearRecur(n - 1)
linear_recur(n - 1)
```
=== "Go"