[C++로 풀이] 음양 더하기 ⭐

Date:     Updated:

카테고리:

태그:

📌 음양 더하기

난이도 ⭐

🚀 문제

image


🚀 내 풀이 ⭕

#include <string>
#include <vector>

using namespace std;

int solution(vector<int> absolutes, vector<bool> signs) {
    int answer = 0;
    int n = absolutes.size();
    for (int i = 0; i < n; ++i)
        if (signs[i] == false)
            absolutes[i] *= -1;
    for (int i = 0; i < n; ++i)
        answer += absolutes[i];
    return answer;
}


🌜 개인 공부 기록용 블로그입니다. 오류나 틀린 부분이 있을 경우 
언제든지 댓글 혹은 메일로 지적해주시면 감사하겠습니다! 😄

맨 위로 이동하기

Programmers 카테고리 내 다른 글 보러가기

댓글 남기기