Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 20 Online
OpenStudy (anonymous):

PS6: working on taking words and turning them into sorted strings. The words start as strings. One option is to convert the string to list using the list function, so I can use the linear selection sort. I'm having trouble converting my list back to a string though. If I'm only working with immutable strings, it seems like I have to use a quadratic sort algorithm. Did anyone come up with a different approach?

OpenStudy (anonymous):

to clarify, if I don't convert the string to a list (i.e. I work only with strings) it seems like I'm stuck with a quadratic sort algorithm.

OpenStudy (anonymous):

sorted() is a built-in function lists have a sort method ''.join(list) <<-- list-to-string http://dpaste.com/695028/ http://docs.python.org/howto/sorting.html

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!