프로그래머스(Level 0) - 🚫 컨트롤 제트

Gammi·2023년 6월 2일
0

프로그래머스

목록 보기
67/69

✔ 문제






✔ 해결


class Solution {
  public int solution(String s) {
    int answer = 0, z = 0;
    String sArr = s.split(" ");
    
    for(int i = 0; i < sArr.length; i++) {
      if(!sArr[i].equals("Z") {
        answer += Integer.parseInt(sArr[i]);
      }else {
        z = i;
        answer -= Integer.parseInt(sArr[z - 1]);
      }
    }
    
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글