Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 216 Bytes

File metadata and controls

8 lines (6 loc) · 216 Bytes

What Did I Learn?

In this challenge I learned:

  1. Loop one line so that if the value is False, we store its index in a new list
indices_distinct = [i for i, valor in enumerate(ar) if not valor]