Sort a list of names alphabetically, case-insensitively.
Constraints
Example
>>> order_by_name(['bob', 'Alice', 'carol']) ['Alice', 'bob', 'carol'] >>> order_by_name(['Zoe', 'amy', 'Bob']) ['amy', 'Bob', 'Zoe'] >>> order_by_name([]) []
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints