📜 문제 내용 🤔 과정자료형에 맞춰 코드 작성 99클럽 문제 링크를 들어가자 이미 답안이 작성되어 있길래, 보니까 이전에 푼 흔적이 있어서 바로 지우고 다시 풀었다. 바로 아래는 이전에 풀고 제출한 코드class Solution { public long[] solution(int x, int n) { long[] answer = new long[n]; long num = x; for(int i=0;i ✨ 최종 제출 답안class Solution { public long[] solution(int x, int n) { long[] answer = new long[n]; answer[0] = x; fo..
🐬 오늘 한 일 정보처리기사 실기 공부 (C 언어, Java, Python 프로그래밍) Java, JavaScript로 코드트리 알고리즘 문제 풀이 Aula F87 키보드의 회목축을 오테뮤 저소음 피치축으로 교체 99클럽 자바 미들러 문제 풀이 및 포스팅https://bonkri.tistory.com/32 [프로그래머스] n^2 배열 자르기 - Java [자바]📜 문제 내용 🤔 과정일단 그리디하게 문제에 주어진대로 의식의 흐름을 따라 그냥 진행했다. class Solution { public int[] solution(int n, long left, long right) { int[][] input = new int[n+1][n+1]; for(int i=1;i 결bonkri.tistory.com ..
📜 문제 내용 🤔 과정일단 그리디하게 문제에 주어진대로 의식의 흐름을 따라 그냥 진행했다. class Solution { public int[] solution(int n, long left, long right) { int[][] input = new int[n+1][n+1]; for(int i=1;i 결과) 메모리 초과 이슈로 바로 테스트 케이스 광탈 "입출력 예 설명"에 국한되지 않고 바로 answer 배열에 넣는 방법을 생각했다. ✨ 최종 제출 답안class Solution { public int[] solution(int n, long left, long right) { int size = (int)(right - left +..