Build Your Own Zip

Python's zip groups elements that have the same index across several lists. Given a list of lists rows, where inner lists may have different lengths, build those index-based groups yourself. Return a list of groups, stopping at the shortest inner list; if there are no input lists, return an empty list.

Примеры

Ввод
[[1, 2, 3], [4, 5, 6]]
Вывод
[[1, 4], [2, 5], [3, 6]]
Ввод
[[1, 2, 3], [4, 5]]
Вывод
[[1, 4], [2, 5]]
Ввод
[]
Вывод
[]

Нужно реализовать

def my_zip(rows: list) -> list:

Теги

listsarray
PostgreSQLv16

Čia bus kodo vykdymo rezultatas

Tests12
Visible tests
Paslėptas testas 7
Paslėptas testas 8
Paslėptas testas 9
Paslėptas testas 10
Paslėptas testas 11
Paslėptas testas 12

They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.

Focus radio
Paused · SomaFM · Fluid