Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
@file
@brief shortcuts for scratch
#from .example_echiquier import check as check1
from .example_echiquier import check_echiquier
from .example_tri import check_tri
from .example_pyramide import check_pyramide
from .example_chute import check_chute
def check():
run checking functions
check_echiquier()
check_tri()
check_pyramide()
check_chute()
return True