We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Finally, after 3 hours! Don't use Python's sort(): I assume that our memory usage is so constrained that we can't sort an array of 1000 things. Don't create a big string in memory (i.e. don't use join()). So:
The Full Counting Sort
You are viewing a single comment's thread. Return to all comments →
Finally, after 3 hours! Don't use Python's
sort()
: I assume that our memory usage is so constrained that we can't sort an array of 1000 things. Don't create a big string in memory (i.e. don't usejoin()
). So: