Research portable Memory game | Исследовать портируемую игру Память
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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"
- #}
|