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.
|
-
- #include <map>
- #include <string>
- #include <vector>
- #include "ctx.h"
- #include "llm.h"
- #include "memory_Context.h"
- #include "main.h"
-
- std::string llm_test_isDigit_digit(
- ) {
- if (
- llm_isDigit("123")
- ) {
- return "OK: llm_isDigit_digit";
- }
- return "ERR: llm_isDigit_digit";
- }
-
- std::string llm_test_isDigit_notDigit(
- ) {
- if (
- llm_isDigit("abc")
- ) {
- return "ERR: llm_isDigit_notDigit";
- }
- return "OK: llm_isDigit_notDigit";
- }
-
- std::string llm_test_strToInt(
- ) {
- if (
- llm_strToInt("123") == 123
- ) {
- return "OK: llm_strToInt";
- }
- return "ERR: llm_strToInt";
- }
|