문제설명
알고리즘
1. 숫자입력
2. 부호 판별 후 결과 더하기
코드
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> absolutes, vector<bool> signs) {
int answer = 0;
for(int i=0; i<absolutes.size();i++){
int value = absolutes[i];
bool sign = signs[i];
if(sign){
answer+=value;
}
else{
answer-=value;
}
}
return answer;
}
'Algorithm' 카테고리의 다른 글
[프로그래머스] 추억 점수 (0) | 2023.05.12 |
---|---|
[백준 2468] 안전 영역 (0) | 2023.04.11 |
[프로그래머스] 뒤에 있는 큰 수 찾기 (0) | 2023.03.05 |
[프로그래머스] 게임 맵 최단거리 (0) | 2023.02.24 |
[프로그래머스] 가장 가까운 같은 글자 (0) | 2023.02.24 |