最喜欢的水题
class Solution {
public:
int finalPositionOfSnake(int n, vector<string>& commands) {
int i=0,j=0;
for(auto x:commands)
{
if(x=="UP") i--;
else if(x=="RIGHT") j++;
else if(x=="DOWN") i++;
else j--;
}
return i*n+j;
}
};
本来还准备开个数组结果发现题目把计算结果的公式都给了
操作也是似分的简单啊!