stack을 만들어서 바로 int[]로 변경하려 했으나 안되었다.다름 사람의 풀이 역시 바로 바꾸지 않았다. stack으로 넣은 다음 하나씩 읽어 새로 만든 int[]에 집어 넣었다. public class Main { public static void main(String[] args) { Solution sol = new Solution(); int[] prices = new int[5]; prices[0] = 1; prices[1] = 2; prices[2] = 3; prices[3] = 2;…… 프로그래머스 주식가격 계속 읽기
[카테고리:] 생활코딩
프로그래머스 쇠막대기
문제를 보고 stack을 적용해야 생각해야 상식이다. 그러나 이 문제를 stack을 쓰기위해 만들었다. import java.util.Stack; public class Main { public static void main(String[] args) { Solution sol = new Solution(); String arrangement = “(())”; sol.solution(arrangement); System.out.println(“여기”); }// void main } // Main class Solution { public int solution(String arrangement) { Stack<String> stackOfWork = new Stack<>(); String…… 프로그래머스 쇠막대기 계속 읽기
프로그래머스 위장
아..지겹다. 개념이 없으니 삽질하는 시간은 많아지고.. package programmers5; import java.util.HashMap; import java.util.Iterator; import java.util.Set; public class Main { public static void main(String[] args) { String[][] clothes = new String[3][2]; clothes[0][0] = “yellow_hat”; clothes[0][1] = “headgear”; clothes[1][0] = “blue_sunglasses”; clothes[1][1] = “headgear”; clothes[2][0] = “green_turban”; clothes[2][1] = “headgear”; Solution sol = new Solution(); sol.solution(clothes); System.out.println(“여기”); }//…… 프로그래머스 위장 계속 읽기
프로그래머스 스킬테스트
두 문제를 30분안에 풀어야 된다. 찾아보고 하면 한 시간 정도 적당해 보인다. 코드를 다 외우고 있어야 하나? 주어진 string과 숫자 n으로 n번째 기준으로 정렬하는 문제다. import java.util.TreeMap; import java.util.Iterator; import java.util.Set; public class Main { public static void main(String[] args){ String[] strings = new String[3]; strings[0]=”sun”; strings[1]=”bed”; strings[2]=”car”; String[] target = new String[strings.length]; TreeMap <Integer,…… 프로그래머스 스킬테스트 계속 읽기
프로그래머스 전화번호 목록
hashmap으로 접근하니 좀 빨리 풀린다. import java.util.HashMap; import java.util.Iterator; import java.util.Set; public class Main { public static void main(String[] args) { String[] participant = new String[3]; participant[0] = “123”; participant[1] = “456”; participant[2] = “789”; String remains = new String(); HashMap<Integer, String> temp = new HashMap<>(); for (int i = 0; i < participant.length; i++)…… 프로그래머스 전화번호 목록 계속 읽기