import java.util.*;
class Solution {
public int solution(String s) {
int answer = 0;
Stack<Integer> stack = new Stack<>();
for (String word : s.split(" ")) {
if (word.equals("Z")) {
stack.pop();
} else {
stack.push(Integer.parseInt(word));
}
}
for (int i : stack) {
answer += i;
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 외계어 사전 (0) | 2023.02.05 |
---|---|
[프로그래머스] 캐릭터의 좌표 (0) | 2023.02.05 |
[프로그래머스] 소인수분해 (0) | 2023.02.04 |
[프로그래머스] 한 번만 등장한 문자 (0) | 2023.02.04 |
[프로그래머스] 7의 개수 (0) | 2023.02.04 |