Open Hoodedgull opened 4 years ago
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:
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: