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 |
Tags
- 낙관적 락 재시도
- netty
- DI
- java
- S3
- @transactional
- spring DI
- 낙관적 락 롤백
- 멀티모듈 테스트컨테이너
- ObjectOptimisticLockingFailureException 처리
- OptimisticLock
- AccessToken
- redissonlock aop
- 소수찾기 java
- 형상관리
- Spring Cloud Gateway
- kotest testcontainers
- multimodule testcontainers
- 알고리즘
- spring aop
- 백준
- 우아한 테크러닝
- jpa
- Invalid property 'principal.username' of bean class
- ObjectOptimisticLockingFailureException
- springsecurity
- TestContainers
- interface
- RefreshToken
- aop
Archives
- Today
- Total
목록가장 큰 정사각형 찾기 java (1)
조급하면 모래성이 될뿐
[프로그래머스] 가장 큰 정사각형 찾기
문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/12905 코딩테스트 연습 - 가장 큰 정사각형 찾기 | 프로그래머스 [[0,1,1,1],[1,1,1,1],[1,1,1,1],[0,0,1,0]] 9 programmers.co.kr 코드 class Solution { public int solution(int [][]board) { // 우측하단부터 만들려고하는데, 길이가 1인경우에도 검사 될 수 있도록 크기가1더 큰 배열을 새로 만든다. int[][] newBoard = new int[board.length+1][board[0].length+1]; for ( int i = 0 ; i < board.length; i++ ) { for ( int j =..
Algorithm/Programmers
2019. 12. 12. 21:26