Skip to content

Fix a typo mistake #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tutorial/09.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The next data structure that we'll look at is a set. A set is similar to a
list, except it does not have a specific order and each element may only appear
once. Both the data structures are very useful because while in a list
is fast to access the elements near the top or the bottom, and the order of
once. Both data structures are very useful because while in a list
it is fast to access the elements near the top or the bottom, and the order of
the elements is preserved, in a set is very fast to test for membership, that
is, to immediately know if a given element was added or not. Moreover in
a set a given element can exist only in a single copy.
Expand Down