-
[프로그래머스] n^2 배열 자르기 (월간 코드 챌린지 시즌 3)ALGORITHM/PROGRAMMERS 2021. 10. 29. 16:31
https://programmers.co.kr/learn/courses/30/lessons/87390
2021-10-29
1234567891011class Solution {public int[] solution(int n, long left, long right) {int[] arr = new int[(int) (right-left+1)];int idx = 0;while(left <= right) {arr[idx++] = (int) Math.max(left/n+1, left%n+1);left++;}return arr;}}cs #문제풀이
해당 번호 좌표 값 구해서 풀었다.
'ALGORITHM > PROGRAMMERS' 카테고리의 다른 글
[프로그래머스] 체육복 (0) 2021.12.06 [프로그래머스] 스티커 모으기(2) - (Summer/Winter Coding(~2018)) (0) 2021.10.30 [프로그래머스] 위클리 챌린지 12주차 - 피로도 (0) 2021.10.27 [프로그래머스 ] 위클리 챌린지 3주차 - 퍼즐 조각 채우기 (0) 2021.09.26 [프로그래머스] 위클리 챌린지 7주차 (0) 2021.09.20