중간에 시간초과떠서 그냥 다른 분꺼 copy함.. 자괴감든다 class Solution { public String[] solution(String[] record) { HashMap map = new HashMap(); int count = 0; for (String value : record) { if (value.charAt(0) == 'L') continue; else if (value.charAt(0) == 'C') count++; map.put(value.split(" ")[1], value.split(" ")[2]); } String[] result = new String[record.length - count]; int index = 0; for (String s : record) { if..
package test; /* */ public class 음양_더하기 { public static void main(String[] args) { int[] absolutes = {4, 7, 12}; boolean[] signs = {true, false, true}; Solution6 Solution6 = new Solution6(); Solution6.solution(absolutes, signs); } } class Solution6 { public int solution(int[] absolutes, boolean[] signs) { int answer = 0; for (int i = 0; i < signs.length; i++) { if (signs[i]) { answer += absolute..
import java.util.Arrays; class Solution { public int solution(int[] numbers) { int answer = -1; int count = 0; //숫자는 0~9까지 10가지가 들어가기에! for (int i = 0; i < 10; i++) { //numbers 배열의 길이만큼 돌아서 해당 숫자가 있는지 없는지 체크합니다. for (int j = 0; j < numbers.length; j++) { if (numbers[j] == i) { //해당 숫자가 있는 경우 count++ 로 이미 존재하는 숫자라는 것을 알려줍니다. count++; } } if (count == 0) { //해당 숫자가 없는 경우 answer에 해당 값을 더합니다. answer..
코드 구현 import java.util.Stack; class Solution { public int solution(int[][] board, int[] moves) { int answer = 0; Stack stack = new Stack(); for (int move : moves) { for (int j = 0; j < board.length; j++) { /* * 칸에 인형이 존재하는 경우(!=0) * 다음 행(아래로)으로 이동함 [0][0], [1][0], [2][0] * * move배열 원소 값을 board 2차원배열의 열 값에 넣어 비교(board[j][move-1])하며 * 배열 인덱스는 0부터 시작이니까 -1 * */ if (board[j][move - 1] != 0) { // 스택이..
크레인 인형뽑기 게임 import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.Objects; class Solution { public int solution(int[][] board, int[] moves) { List list = new ArrayList(); int count = 0; for (int move : moves) { for (int j = 0; j = 2 && Objects.equals(list.ge..
- Total
- Today
- Yesterday
- 자료표현
- 구현
- 자료구조
- 코딩테스트
- stack
- 1063
- Git
- 프로그래머스
- solved.ac
- 백준
- 2진수
- 2019 카카오 개발자 겨울 인턴십
- 브루트포스
- 오
- K번째수
- ASCII코드
- java
- 프로그래머스 # 음양더하기
- 크레인 인형뽑기 게임
- 인형뽑기
- 알고리즘
- 킹
- 10진수
- 카카오 코딩테스트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |