Inspiration
MLH Hack Week
What it does
It's sorts a list in ascending order.
How we built it
I took advantage of the python sort() method to sort the list in place.
Challenges we ran into
I wanted to first check if the list were made out of integers before sort it, It took me a couple of minutes to remember I should be comparing the type of the element in the list. I first tough about using isnumeric() or isdigit() build in methods.
Accomplishments that we're proud of
I implemented the program to sort lists that are made out of integer and also to correctly sort a list that is made out of strings, handling the edge case of capitalization.
What we learned
To look for edge cases.
What's next for Sorting elements
Implement it to handle other edge cases.

Log in or sign up for Devpost to join the conversation.