250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(프로그래머스 c++)음양 더하기 본문
728x90
반응형
programmers.co.kr/learn/courses/30/lessons/76501
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> absolutes, vector<bool> signs) {
int answer = 0;
for(int i = 0; i < signs.size(); i++){
int num = absolutes[i];
if(signs[i]){
answer += num;
}
else{
answer -= num;
}
}
return answer;
}
728x90
반응형
'프로그래머스 알고리즘 > 1단계' 카테고리의 다른 글
(프로그래머스 c++)예산 (0) | 2021.09.28 |
---|---|
(프로그래머스 c++)약수의 개수와 덧셈 (0) | 2021.06.08 |
(프로그래머스 c++)로또의 최고 순위와 최저 순위 (0) | 2021.05.06 |
(프로그래머스 JS)나누어 떨어지는 숫자 배열 (0) | 2021.02.25 |
(프로그래머스 JS)문자열 내 p와 y의 개수 (0) | 2021.02.25 |