728x90
반응형
문제
코드
#include <string>
#include <vector>
using namespace std;
int solution(int n, string control) {
int answer = n;
for (const char c : control)
{
if (c == 'w')
{
answer += 1;
}
if (c == 's')
{
answer -= 1;
}
if (c == 'd')
{
answer += 10;
}
if (c == 'a')
{
answer -= 10;
}
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 수열과 구간 쿼리 3 (0) | 2023.10.20 |
---|---|
[프로그래머스/C++] Lv.0 수 조작하기 2 (0) | 2023.10.20 |
[프로그래머스/C++] Lv.0 마지막 두 원소 (0) | 2023.10.18 |
[프로그래머스/C++] Lv.0 이어 붙인 수 (0) | 2023.10.18 |
[프로그래머스/C++] Lv.0 모든 원소들의 곱과 합 (0) | 2023.10.17 |