+ 6
[GHALLENGE]
hello guys the challenge of today is write a program read strings then it classify them i analphabetic order example input: car ,string,baby output: baby,car,string. use any language. remember ,programing is an art. good luck
6 Antworten
+ 8
#python.
#input:cat,book,car,apple
print(*sorted(input().split(',')))
+ 6
+ 6
@luka did you read the comments how to do the right input format?
And I think @the legend master made a mistake there and wanted to write "baby, car, string"
+ 4
sorry @ Tim Thuma I will fix it