Research portable Memory game | Исследовать портируемую игру Память
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

7 meses atrás
7 meses atrás
7 meses atrás
7 meses atrás
7 meses atrás
7 meses atrás
7 meses atrás
7 meses atrás
7 meses atrás
7 meses atrás
12345678910111213141516171819202122232425262728293031
  1. from cli import *
  2. from cli_test import *
  3. from memory_test import *
  4. from shell import *
  5. import sys
  6. print(memory_test_generateConstPlayfield())
  7. print(memory_test_selectItem_1x())
  8. print(memory_test_selectItem_2x())
  9. print(memory_test_selectItem_3x())
  10. print(memory_test_shouldDeselectMismatchedItems())
  11. print(memory_test_shouldDeselectMismatchedItems_itemTwice())
  12. print(memory_test_shouldDetectVictory())
  13. print(memory_test_shouldHideMatchingItems())
  14. print(cli_test_greetUser())
  15. print(cli_test_showHelp_h())
  16. print(cli_test_showHelp_help())
  17. c = shell_createContext()
  18. c.cCLI = cli_createContext()
  19. c = shell_launch(c)
  20. print(c.output)
  21. for line in sys.stdin:
  22. c.input = line.rstrip()
  23. c = shell_processInput(c)
  24. if c.exit:
  25. break
  26. print(c.output)