Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 낙관적 락 롤백
- Spring Cloud Gateway
- RefreshToken
- 낙관적 락 재시도
- multimodule testcontainers
- S3
- Invalid property 'principal.username' of bean class
- AccessToken
- 우아한 테크러닝
- 형상관리
- spring aop
- OptimisticLock
- ObjectOptimisticLockingFailureException 처리
- 알고리즘
- jpa
- 백준
- interface
- netty
- spring DI
- DI
- 소수찾기 java
- 멀티모듈 테스트컨테이너
- ObjectOptimisticLockingFailureException
- redissonlock aop
- java
- kotest testcontainers
- springsecurity
- @transactional
- aop
- TestContainers
Archives
- Today
- Total
목록행렬곱셈 java (1)
조급하면 모래성이 될뿐

문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/12949 코딩테스트 연습 - 행렬의 곱셈 | 프로그래머스 [[2, 3, 2], [4, 2, 4], [3, 1, 4]] [[5, 4, 3], [2, 4, 1], [3, 1, 1]] [[22, 22, 11], [36, 28, 18], [29, 20, 14]] programmers.co.kr 나의 풀이 - 선수지식 필수 ( 선형대수 ) * 행렬의 곱셈 공식에 대한 이해가 필요. ( 링크 : https://darkpgmr.tistory.com/103 ) - 두 행렬 A,B에 대해서 A*B 곱셈을 위해서는 A의 열과 B의 행이 같아야지만 가능하다. - 먼저 문제의 예시를 보자. arr1 -> [ [1,4],..
Algorithm/Programmers
2020. 1. 7. 19:41