C# SortedSet.IsSubsetOf not working as expected
I don’t believe that SortedSet.IsSubsetOf
is working as expected. Given this code, shouldn’t ss.IsSubsetOf(l)
return True?
C# SortedSet IsSubsetOf not working as expected
Given the following code, why does ss.IsSubsetOf(l)
return false
?