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
7 meses atrás
7 meses atrás
7 meses atrás
7 meses atrás
1234567891011121314151617181920212223242526272829303132333435
  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_selectItem())
  16. print(cli_test_shouldPromptSelection())
  17. print(cli_test_shouldReportIvalidItemSelection_outOfBoundsMin())
  18. print(cli_test_showHelp_h())
  19. print(cli_test_showHelp_help())
  20. c = shell_createContext()
  21. c.cCLI = cli_createContext()
  22. c.cCLI.cMemory = memory_createContext()
  23. c = shell_launch(c)
  24. print(c.output)
  25. for line in sys.stdin:
  26. c.input = line.rstrip()
  27. c = shell_processInput(c)
  28. if c.exit:
  29. break
  30. print(c.output)