Skip to content
Advertisement

Truncate sublists to the lowest length

I have:

JavaScript

I want:

JavaScript

Which is the list l with all sublists truncated to the lowest length found for the sublists in l.

I tried:

JavaScript

Which works but quite slow and long to write. I’d like to make this more efficient through list comprehension or similar.

Advertisement

Answer

With list comprehension, one-liner:

JavaScript

Or:

JavaScript

Output:

JavaScript

We compute the minimal length of subslists in the ‘range()’ to iterate over sublists for that amount and to reconstruct a new subslist. The top-level list comprehension allows to reconstruct the nested sublist.

If you have a large nested list, you should use this version with two lines:

JavaScript

Or:

JavaScript

Using zip and preserving the list objects:

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement