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
You have a nice implementation of a Dict here. But others should know from the start that Dict.get is O(n) so that they can decide whether they can use it.
The text was updated successfully, but these errors were encountered:
Yes, I think you're right, that should be in the readme. One caveat is that the Dict is not O(n) in the number of elements, but on the number of insertions.
You have a nice implementation of a Dict here. But others should know from the start that
Dict.get
is O(n) so that they can decide whether they can use it.The text was updated successfully, but these errors were encountered: