본문 바로가기

분류 전체보기

(691)
프로그래머스 코딩테스트 연습 : 개인정보 수집 유효기간 (20240316, java) 문제 바로가기: https://school.programmers.co.kr/learn/courses/30/lessons/150370 나의 풀이 import java.util.*; import java.text.*; class Solution { public int[] solution(String today, String[] terms, String[] privacies) { List answer = new ArrayList(); try{ SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); String parsedToday = today.replace(".","/"); parsedToday = parsedToday + " 00..
프로그래머스 코딩테스트 연습 : 숫자 짝꿍 (20240315, java) 문제 바로가기: https://school.programmers.co.kr/learn/courses/30/lessons/131128 나의 풀이 FAIL import java.util.*; class Solution { public String solution(String X, String Y) { List XList = new ArrayList(Arrays.asList(X.split(""))); List YList = new ArrayList(Arrays.asList(Y.split(""))); List resultArray = new ArrayList(); for(int i =0; i
프로그래머스 코딩테스트 연습 : 옹알이(2) (20240315, java) 문제 바로가기: https://school.programmers.co.kr/learn/courses/30/lessons/133499 나의 풀이 FAIL class Solution { public int solution(String[] babbling) { int count = 0; for(String word : babbling){ String wordCheck = word; wordCheck = wordCheck.replaceAll("aya",""); wordCheck = wordCheck.replaceAll("ye",""); wordCheck = wordCheck.replaceAll("woo",""); wordCheck = wordCheck.replaceAll("ma",""); word = word...
프로그래머스 코딩테스트 연습 : 로또의 최고 순위와 최저 순위 (20240315, java) 문제 바로가기: https://school.programmers.co.kr/learn/courses/30/lessons/77484 나의 풀이 import java.util.*; // GPT의 도움을 받아 품 class Solution { public int[] solution(int[] lottos, int[] win_nums) { // Remove zeros from lottos int zero = 0; Set notZeroSet = new HashSet(); for (int num : lottos) { if (num != 0) { notZeroSet.add(num); } else { zero++; } } // Count the matches int matches = 0; for (int num : w..
dev-camp Day7 : 쿠폰 적용법 및 Admin만 쿠폰 관련 API 접근 0. 쿠폰은 선택 적용? 최대 할인율 자동 적용? 정액제와 정률제 쿠폰을 함께 생성하는 경우 적용 방법에 따라 할인 가격이 달라질 수 있다. 현재 최대의 자동 적용되는 할인율이 있다고 해도 다른 강의 적용하고 싶을 수 있으므로 내 생각에는 선택 적용으로 하고 내가 가진 쿠폰을 모두 조회하는 API의 응답값으로 최고 할인율 조합을 알려주면 좋을 것 같다. 1. Admin만 쿠폰을 생성할 수 있어야 한다. - AuthGuard 의 CanActivate를 이용해서 Custom decorator를 생성 - 특정 Role을 가진 회원(admin)만 쿠폰 생성 API에 접근 가능하게 함. 2. 찾아낸 개선점 Custom decorator가 구현되어 있지 않은데, 해당 기능을 구현하여 user의 role별로 접근을 ..
프로그래머스 코딩테스트 연습 : 3진법 뒤집기 (20240312, java) 문제 바로가기: https://school.programmers.co.kr/learn/courses/30/lessons/68935 나의 풀이 FAIL class Solution { public int solution(int n) { int left = n % 3 for (i=0; i 0){ a = (n % 3) + a; n /= 3; } a = new StringBuilder(a).reverse()...
프로그래머스 코딩테스트 연습 : 최대공약수와 최소공배수 (20240312, java) 문제 바로가기: https://school.programmers.co.kr/learn/courses/30/lessons/12940 나의 풀이 class Solution { public int[] solution(int n, int m) { int[] answer = new int[2]; for (int i=1; i0; j--){ if (n%j == 0 && m%j == 0){ answer[0] = j; break; } } return answer; } } 다른 사람의 풀이 class Solution { public int[] solution(int n, int m) { int[] answer = new int[2]; for (int i = 1; i < n + m; i++) { if (n % i == 0 ..
프로그래머스 코딩테스트 연습 : 직사각형 별찍기(20240312, java) 문제 바로가기: https://school.programmers.co.kr/learn/courses/30/lessons/12969 나의 풀이 import java.util.Scanner; class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); for (int i=0;i sb.append("*")); IntStream.range(0, b).forEach(s -> System.out.println(sb.toString())); } } 소감 StringBuilder append 기억하기