Newskooler
10/01/2020, 3:15 PMmy_function.map(a, b)
where len(a)
is 2 and len(b)
is 5, will this result in 10 runs? Currently I think it only runs twice : / 🤔nicholas
b
would be accessing non-existent values for a
, so the map has to appeal to the lowest common denominatorNewskooler
10/01/2020, 3:40 PMnicholas
Newskooler
10/01/2020, 3:43 PMnicholas