mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
5 lines
113 B
Python
5 lines
113 B
Python
def cover(board, lab=1):
|
|
lab += 1
|
|
for dx in [0, 1]:
|
|
lab = cover(board, lab)
|
|
return la<caret>b |