티스토리 뷰
title: "행렬의 덧셈"
category: 프로그래머스[Level-1]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-01-20"
문제 링크
C++
#include <string>
#include <vector>
using namespace std;
vector<vector<int>> solution(vector<vector<int>> arr1, vector<vector<int>> arr2) {
vector<vector<int>> answer;
for(int i=0; i<arr1.size(); i++){
vector<int> sum;
for(int j=0; j<arr1[i].size(); j++){
sum.push_back(arr1[i][j] + arr2[i][j]);
}
answer.push_back(sum);
}
return answer;
}
JavaScript
function solution(arr1, arr2) {
var answer = [];
for (let i = 0; i < arr1.length; i++) {
const arr = [];
for (let j = 0; j < arr1[i].length; j++) {
arr.push(arr1[i][j] + arr2[i][j]);
}
answer.push(arr);
}
return answer;
}
728x90
반응형
'Programmers Solutions > Level-1' 카테고리의 다른 글
[프로그래머스] 하샤드 수 (0) | 2021.02.03 |
---|---|
[프로그래머스] 핸드폰 번호 가리기 (0) | 2021.02.03 |
[프로그래머스] 직사각형 별찍기 (0) | 2021.02.03 |
[프로그래머스] x만큼 간격이 있는 n개의 숫자 (0) | 2021.02.03 |
[프로그래머스] 예산 (0) | 2021.02.03 |
댓글