Skip to content

Commit

Permalink
Merge pull request #5 from marvhh/marvhh-patch-1
Browse files Browse the repository at this point in the history
Typo in part 4 - 3-lists.md
  • Loading branch information
Gudkat authored Jan 28, 2025
2 parents f040e49 + fbf4809 commit b7431c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/part-4/3-lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ Just like the built-in functions above, our own functions can also take a list a

```python
def median(my_list: list):
ordered = sorted(my_list))
ordered = sorted(my_list)
list_centre = len(ordered) // 2
return ordered[list_centre]
```
Expand Down

0 comments on commit b7431c2

Please sign in to comment.