Remove semicolons

Remove semicolon in head
Remove semicolon in initial
Remove semicolons in tail
This commit is contained in:
Angelos Chalaris
2020-01-03 12:54:33 +02:00
parent 0f36c17995
commit 47b718dd54
3 changed files with 4 additions and 4 deletions

View File

@ -13,5 +13,5 @@ def initial(lst):
```
```py
initial([1, 2, 3]); # [1,2]
initial([1, 2, 3]) # [1,2]
```