Research portable Memory game | Исследовать портируемую игру Память
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
1234567891011 |
- #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);
- }
|