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

一个小问题

Open slyjim opened this issue 5 years ago • 0 comments

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

虽然不改也可以ac*^____^*

slyjim avatar Nov 13 '20 03:11 slyjim