일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- background: url
- React API 참고서
- React18
- React 18 Nextjs
- Nextjs React 18
- Javascript
- react-helmet
- background setInterval
- Babel
- notFound()
- CSS
- React 고급 안내서
- Nextjs
- background setttimeout
- 고급안내서
- background tab
- codingtest
- context
- Programmers
- hook
- React 공식문서
- getUTCDate
- Next13
- React 고급안내서
- next13 head
- react
- RTK Query
- Render Props
- React 18
- react hook
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