Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- from gui_aux import *
-
- def test_gui_aux_cellPositions(
- ) -> str:
- items2x2 = gui_aux_cellPositions(2)
- items4x4 = gui_aux_cellPositions(4)
-
- if (
- len(items2x2) == 4 and
- len(items4x4) == 16
- ):
- return "OK: gui_aux_cellPositions"
- #}
- return "ERR: gui_aux_cellPositions"
- #}
|