We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug A new SkipList<int> contains 0 (zero). It should not contain any numbers before any numbers are added.
To Reproduce Steps to reproduce the behavior:
var list = new SkipList<int>();
var result = list.Contains(0)
Expected behavior I would expect (new SkipList<int>()).Contains(0) to return false.
(new SkipList<int>()).Contains(0)
Environmnet:
The text was updated successfully, but these errors were encountered:
Fixed Issue aalhour#139 A new SkipList<int> contains 0
9cab153
Revert "Fixed Issue aalhour#139 A new SkipList<int> contains 0"
a9ce311
This reverts commit 9cab153.
Fix aalhour#137 and aalhour#139 issues. Update skipList logic
80694da
Fix aalhour#138 and aalhour#139 issues. Update skipList logic
377a8d1
No branches or pull requests
Describe the bug
A new SkipList<int> contains 0 (zero). It should not contain any numbers before any numbers are added.
To Reproduce
Steps to reproduce the behavior:
var list = new SkipList<int>();
var result = list.Contains(0)
Expected behavior
I would expect
(new SkipList<int>()).Contains(0)
to return false.Environmnet:
The text was updated successfully, but these errors were encountered: