Research portable Memory game | Исследовать портируемую игру Память
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- 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"
- #}
|