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
- multimodule testcontainers
- netty
- jpa
- Spring Cloud Gateway
- OptimisticLock
- 백준
- TestContainers
- 소수찾기 java
- @transactional
- S3
- RefreshToken
- spring DI
- 낙관적 락 재시도
- springsecurity
- kotest testcontainers
- redissonlock aop
- spring aop
- java
- 낙관적 락 롤백
- DI
- ObjectOptimisticLockingFailureException
- 우아한 테크러닝
- 멀티모듈 테스트컨테이너
- 알고리즘
- Invalid property 'principal.username' of bean class
- interface
- 형상관리
- ObjectOptimisticLockingFailureException 처리
- AccessToken
- aop
Archives
- Today
- Total
목록programmers 가장 큰 정사각형 찾기 (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