티스토리 뷰
title: "음양 더하기"
category: 프로그래머스[Level-1]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-04-17"
문제 링크
C++
#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++){
if(signs[i]) answer += absolutes[i];
else answer -= absolutes[i];
}
return answer;
}
JavaScript
function solution(absolutes, signs) {
var answer = 0;
signs.forEach((v, i) => {
if (v) answer += absolutes[i];
else answer -= absolutes[i];
});
return answer;
}
728x90
반응형
'Programmers Solutions > Level-1' 카테고리의 다른 글
[프로그래머스] 로또의 최고 순위와 최저 순위 (0) | 2021.06.11 |
---|---|
[프로그래머스] 약수의 개수와 덧셈 (0) | 2021.06.11 |
[프로그래머스] 신규 아이디 추천 (0) | 2021.02.06 |
[프로그래머스] 최대공약수와 최소공배수 (0) | 2021.02.03 |
[프로그래머스] 콜라츠 추측 (0) | 2021.02.03 |
댓글