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