Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
~817 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
python x 1
1 Posted Topic
It's worth mentioning that Python has a number of dictionary implementations that maintain the keys in sorted order for faster iterations. Consider the [sortedcontainers module](https://pypi.python.org/pypi/sortedcontainers) which is pure-Python and fast-as-C implementations. You could use the [SortedDict](http://www.grantjenks.com/docs/sortedcontainers/sorteddict.html) type as a replacement for your own dictionary.
The End.
grantjenks