일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- react-helmet
- React API 참고서
- RTK Query
- React 공식문서
- React18
- next13 head
- context
- React 고급안내서
- React 18
- background setttimeout
- Nextjs
- Programmers
- hook
- CSS
- Babel
- Nextjs React 18
- react
- notFound()
- 고급안내서
- React 18 Nextjs
- Render Props
- getUTCDate
- Next13
- codingtest
- React 고급 안내서
- background setInterval
- react hook
- background tab
- background: url
- Javascript
Archives
- Today
- Total
목록가장 큰 정사각형 찾기 (1)
akjfal
[Programmers] 가장 큰 정사각형 찾기
class Solution { int[][] board; int[][] check; int row, column, answer; public int solution(int [][]board) { this.board = board; answer = 0; row = board.length; column = board[0].length; check = new int[row][column]; refreshSquare(); checkSquare(); answer = answer * answer; return answer; } void refreshSquare(){ for(int i = 0; i -1; j--){ if(..
알고리즘/programmers
2021. 6. 22. 17:57