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
- Eclipse
- 시큐리티
- Java
- Vue
- Git
- Spring
- db
- IntelliJ
- error
- 프로그래머스
- 넥사크로
- 방법
- 함수
- jquery
- 생성
- oracle
- Security
- JavaScript
- GitHub
- 쿼리
- 알고리즘
- aws
- 자바
- 코틀린
- kotlin
- 스프링
- 에러
- mybatis
- JPA
- 오라클
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 |