PAT-Advanced-Level icon indicating copy to clipboard operation
PAT-Advanced-Level copied to clipboard

Solutions to PAT💯

Results 2 PAT-Advanced-Level issues
Sort by recently updated
recently updated
newest added

A1077的第30行 `if (tmp1[0] == ' ') tmp1.erase(0); // kuchi字符串第一位可能是空格` 是不是应该改为 `if (tmp1[0] == ' ') tmp1.erase(0,1); ` 虽然不改也可以ac*^____^*

优秀的女程序员