Hide keyboard shortcuts

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@file 

3@brief shortcuts for scratch 

4""" 

5 

6#from .example_echiquier import check as check1 

7 

8from .example_echiquier import check_echiquier 

9from .example_tri import check_tri 

10from .example_pyramide import check_pyramide 

11from .example_chute import check_chute 

12 

13 

14def check(): 

15 """ 

16 run checking functions 

17 """ 

18 check_echiquier() 

19 check_tri() 

20 check_pyramide() 

21 check_chute() 

22 return True