Тишина Ульяна Кирилловна, 411 SeeSaw 9346
Парыгина Дарья, 627 группа SeeSaw 9401
f1from itertools import tee, zip_longestf1from itertools import tee, zip_longest
22
t3def seesaw(seq):t3def seesaw(sequence):
4    ab = tee(seq, 2)4    it1it2 = tee(sequence, 2)
5    a = (x for x in a if x % 2 == 0)5    it1 = (x for x in it1 if x % 2 == 0)
6    b = (x for x in b if x % 2 == 1)6    it2 = (x for x in it2 if x % 2 == 1)
7    for xy in zip_longest(ab, fillvalue=None):7    for ab in zip_longest(it1it2, fillvalue=None):
8        if x != None:8        if a is not None:
9            yield x9            yield a
10        if y != None:10        if b is not None:
11            yield y11            yield b
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op