Research portable Memory game | Исследовать портируемую игру Память
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 6 mēnešiem
pirms 6 mēnešiem
1234567891011121314151617181920
  1. from memory_test import *
  2. from memoryCLI import *
  3. import sys
  4. print(memory_test_generateConstPlayfield())
  5. print(memory_test_selectItem_1x())
  6. print(memory_test_selectItem_2x())
  7. print(memory_test_selectItem_3x())
  8. print(memory_test_shouldDeselectMismatchedItems())
  9. print(memory_test_shouldDeselectMismatchedItems_itemTwice())
  10. print(memory_test_shouldDetectVictory())
  11. print(memory_test_shouldHideMatchingItems())
  12. c = memoryCLI_createContext()
  13. c = memoryCLI_greetUser(c)
  14. print(c.output)
  15. for line in sys.stdin:
  16. ln = line.rstrip()
  17. print(f"you entered: '{ln}'")