Skip to content

Commit

Permalink
fix error about modifying elements in lists
Browse files Browse the repository at this point in the history
  • Loading branch information
bast committed Jan 7, 2025
1 parent 47fc3b5 commit 3e52fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/good-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ How to choose the right collection type:
- Search in sorted collections: {py:mod}`bisect` library

What to avoid:
- Need to add/remove/modify elements at the beginning or in the middle? Don't use a list.
- Need to add/remove elements at the beginning or in the middle? Don't use a list.
- Need to make sure that elements are unique? Don't use a list.


Expand Down

0 comments on commit 3e52fef

Please sign in to comment.