Skip to content

Updated circular_linked_list #2483

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

Merged
merged 10 commits into from
Sep 26, 2020
Merged
Prev Previous commit
Next Next commit
fixed indentation
  • Loading branch information
realDuYuanChao authored Sep 26, 2020
commit 633f5448b0ace8c9177640eed12c3a64bb35e4de
2 changes: 1 addition & 1 deletion data_structures/linked_list/circular_linked_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def test_circular_linked_list() -> None:
assert str(circular_linked_list) == "->".join(str(i) for i in range(1, 6))


assert circular_linked_list.is_empty() is False
assert circular_linked_list.is_empty() is False


if __name__ == "__main__":
Expand Down