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.
|
- from llm import *
-
- def llm_test_isDigit_digit(
- ) -> str:
- if (
- llm_isDigit("123")
- ):
- return "OK: llm_isDigit_digit"
- #}
- return "ERR: llm_isDigit_digit"
- #}
-
- def llm_test_isDigit_notDigit(
- ) -> str:
- if (
- llm_isDigit("abc")
- ):
- return "ERR: llm_isDigit_notDigit"
- #}
- return "OK: llm_isDigit_notDigit"
- #}
-
- def llm_test_strToInt(
- ) -> str:
- if (
- llm_strToInt("123") == 123
- ):
- return "OK: llm_strToInt"
- #}
- return "ERR: llm_strToInt"
- #}
|