I'm creating a class where one of the methods inserts a new item into the sorted list. The item is inserted in the corrected (sorted) position in the sorted list. I'm not allowed to use any built-in list functions or methods other than [], [:], +, and len though.. This is the part that's really confusing to me... What would be the best way in going about this??
feedback
|
|
Hint 1: You might want to study the Python code in the bisect module. Hint 2: Slicing can be used for list insertion:
| |||||||
feedback
|
|
Usually it's great to give us what you've got already. This hint might help clear up your difficulties, but if you give us a code snippet (or even pseudocode) we might be better able to help you figure out how to get past your point of confusion:
Also, for homework problems, you should generally use the 'homework' tag. | |||
|
feedback
|
|
| |||
|
feedback
|