728x90
class Solution {
public:
void reverseString(vector<char>& s) {
if(!s.at(0)) return;
int aPointer = 0;
int bPointer = s.size()-1;
while(aPointer <= bPointer)
{
char temp = s.at(aPointer);
s.at(aPointer) = s.at(bPointer);
s.at(bPointer) = temp;
++aPointer;
--bPointer;
}
}
};
728x90
'Archive' 카테고리의 다른 글
Chrono 로 퍼포먼스 체크하기 (0) | 2020.03.15 |
---|---|
LeetCode - Two Sum (0) | 2020.03.13 |
프로그래머스 K번째 수 (0) | 2020.03.12 |
프로그래머스 완주하지 못한 선수 (0) | 2020.03.12 |
프로그래머스 모의고사 CPP (0) | 2020.03.11 |