You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When checking solutions against the integration tester, I did a few hacky things with JSON string comparisons to get around the fact that HashMaps do not implement Eq, Hash, so cannot be compared, put in sets, etc.
Now we use BTreeMap instead, which does implement these, so some cleaning up is likely possible.
When checking solutions against the integration tester, I did a few hacky things with JSON string comparisons to get around the fact that
HashMaps
do not implementEq
,Hash
, so cannot be compared, put in sets, etc.Now we use
BTreeMap
instead, which does implement these, so some cleaning up is likely possible.See also: #531
The text was updated successfully, but these errors were encountered: