Home CS61A: Lecture 15
Post
Cancel

CS61A: Lecture 15

Iterators

  • List Practice

silver = [1, [3]] gold = [2, [4,5]] plat = chain([6, [7,8]]) = [6, [7,8]]

[1,2,3] [1, [2,3]]

This post is licensed under CC BY 4.0 by the author.

CS61A: Iterators

CS61A: Generators