Skip to content

Commit b7431c2

Browse files
authored
Merge pull request #5 from marvhh/marvhh-patch-1
Typo in part 4 - 3-lists.md
2 parents f040e49 + fbf4809 commit b7431c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data/part-4/3-lists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ Just like the built-in functions above, our own functions can also take a list a
523523

524524
```python
525525
def median(my_list: list):
526-
ordered = sorted(my_list))
526+
ordered = sorted(my_list)
527527
list_centre = len(ordered) // 2
528528
return ordered[list_centre]
529529
```

0 commit comments

Comments
 (0)