Research portable Memory game | Исследовать портируемую игру Память
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- #include "llm.h"
-
- bool llm_isDigit(const std::string &str) {
- return
- !str.empty() &&
- str.find_first_not_of("0123456789") == std::string::npos;
- }
-
- int llm_strToInt(const std::string &str) {
- return std::stoi(str);
- }
|