Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- mybatis
- db
- Spring
- JavaScript
- Java
- IntelliJ
- 에러
- 스프링
- kotlin
- Security
- aws
- 오라클
- 코틀린
- 방법
- 쿼리
- 넥사크로
- 시큐리티
- Git
- 알고리즘
- GitHub
- 함수
- 자바
- Vue
- jquery
- error
- 프로그래머스
- oracle
- JPA
- Eclipse
- 생성
Archives
- Today
- Total
송민준의 개발노트
프로그래머스-level1-행렬의 덧셈 본문
https://programmers.co.kr/learn/courses/30/lessons/12950
행렬의 계산... 정보처리기사 공부하면서 질리게 했기 때문에....
class Solution {
public int[][] solution(int[][] arr1, int[][] arr2) {
int[][] answer = new int[arr1.length][arr1[0].length];
for(int i = 0; i < arr1.length; i++) {
for(int j = 0; j < arr1[0].length; j++) {
answer[i][j] = arr1[i][j]+arr2[i][j];
}
}
return answer;
}
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
프로그래머스-level1-직사각형 별찍기 (0) | 2019.11.21 |
---|---|
프로그래머스-level1-x만큼 간격이 있는 n개의 숫자 (0) | 2019.11.20 |
프로그래머스-level1-하샤드 수 (0) | 2019.11.20 |
프로그래머스-level1-짝수와 홀수 (0) | 2019.11.20 |
프로그래머스-level1-최대공약수와 최소공배수 (0) | 2019.11.20 |