よく忘れるんでメモ
<details>
```python
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
```
</details>


クリックすると表示

牌語備忘録 -pygo
よく忘れるんでメモ
<details>
```python
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
```
</details>


クリックすると表示
