Recent Posts
Notice
No Rules Rules
음양 더하기 (feat. 프로그래머스, 76501번) 본문
728x90
반응형
음양 더하기
https://programmers.co.kr/learn/courses/30/lessons/76501
반응형
// woohyeon.kim
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> absolutes, vector<bool> signs) {
int answer = 0;
for(auto idx = 0; idx < absolutes.size(); ++idx)
answer += (signs[idx]) ? absolutes[idx] : -absolutes[idx];
return answer;
}
// *&)*@*
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
카카오프렌즈 컬러링북 (feat. 프로그래머스, 1829번) (0) | 2022.07.21 |
---|---|
없는 숫자 더하기 (feat. 프로그래머스, 86051번) (0) | 2022.07.21 |
완주하지 못한 선수 (feat. 프로그래머스, 42576번) (0) | 2022.07.21 |
크레인 인형뽑기 게임 (feat. 프로그래머스, 64061번) (0) | 2022.07.21 |
오르막 수 (feat. 백준, 11057번) (0) | 2022.07.21 |
Comments