https://programmers.co.kr/learn/courses/30/lessons/42586 코딩테스트 연습 - 기능개발 프로그래머스 팀에서는 기능 개선 작업을 수행 중입니다. 각 기능은 진도가 100%일 때 서비스에 반영할 수 있습니다. 또, 각 기능의 개발속도는 모두 다르기 때문에 뒤에 있는 기능이 앞에 있는 programmers.co.kr [ 나의 풀이 ] import java.util.*; class Solution { public int[] solution(int[] progresses, int[] speeds) { List answer = new ArrayList(); int count = 0; int startIndex = 0; while (startIndex < progresses..
https://programmers.co.kr/learn/courses/30/lessons/42579 코딩테스트 연습 - 베스트앨범 스트리밍 사이트에서 장르 별로 가장 많이 재생된 노래를 두 개씩 모아 베스트 앨범을 출시하려 합니다. 노래는 고유 번호로 구분하며, 노래를 수록하는 기준은 다음과 같습니다. 속한 노래가 programmers.co.kr [ 나의 풀이 ] import java.util.List; import java.util.ArrayList; import java.util.Map; import java.util.HashMap; import java.util.LinkedList; import java.util.Collections; import java.util.LinkedHashMap; im..
https://programmers.co.kr/learn/courses/30/lessons/42578 코딩테스트 연습 - 위장 programmers.co.kr [ 나의 풀이 ] 공식을 찾아내는것이 포인트이다. 공식: (A+1)*(B+1) -1 import java.util.HashMap; import java.util.Map; class Solution { public int solution(String[][] clothes) { int answer = 1; Map clothesMap = new HashMap(); for(int i = 0; i < clothes.length; i++) { clothesMap.put(clothes[i][1], clothesMap.getOrDefault(clothes[i][..
https://leetcode.com/problems/valid-palindrome/ Valid Palindrome - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class Solution { public boolean isPalindrome(String s) { s = s.toLowerCase().replaceAll("[^a-z0-9]", ""); for(int i = 0; i < s.length()/2; i++) { if(s.charAt(i) != s.c..
- Total
- Today
- Yesterday