Hello all,
I am currently working on a programming project and am having a mind blank as far as changing the value of a list. I am attempting to implement bubble sort into a program.
Any help would be useful.
Thank you, and have a good day.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
@stiltonwalrus432
@MattIPv4 is right, we need a little more detail unless that cut/paste from stack over flow above helps you…
This comment has been deleted
Build a new list with a list comprehension:
You can modify the original list in-place if you want, but it doesn’t actually save time:
Here are (Python 3.6.3) timings demonstrating the non-timesave:
And Python 2.7.6 timings: