Казимагамедов Тагир 424 LookSay 8896
Крет Вячеслав Александрович, 321 группа LookSay 8955
n1from itertools import groupbyn1from itertools import *
22
3def LookSay():3def LookSay():
n4    curr_ans = '1'n4    ans = '1'
5    while True:5    while True:
n6        for el in curr_ans:n6        for i in ans:
7            yield int(el)7            yield int(i)
8        new_ans = ''8        new_ans = ''
t9        for i, group in groupby(curr_ans):t9        for i, j in groupby(ans):
10            new_ans += f'{len(list(group))}{i}'10            new_ans += f'{len(list(j))}{i}'
11        curr_ans = new_ans11        ans = new_ans
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op