• Iterable items and speedy solutions

Question related to mission Ascending List

 

Looks like the template changed at some point to make items an iterable of int, judging by the fact some solutions have iterable and some don't.

Speedy solutions should only process the iterable once, which rules out the use of len() since it has to iterate through all items to determine the length. I was hoping to see more discussion on this.