Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 248 Bytes

File metadata and controls

7 lines (5 loc) · 248 Bytes

CSV Sorting

Write a program that accepts a comma separated sequence of words as input and prints the words in a comma-separated sequence after sorting them alphabetically.

sort_csv("without,hello,bag,world") # > bag,hello,without,world