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
- 자료표현
- 1063
- K번째수
- stack
- 백준
- Git
- 오
- 코딩테스트
- 2019 카카오 개발자 겨울 인턴십
- 10진수
- 카카오 코딩테스트
- 브루트포스
- solved.ac
- java
- 크레인 인형뽑기 게임
- 인형뽑기
- 2진수
- 프로그래머스 # 음양더하기
- 자료구조
- 알고리즘
- 프로그래머스
- ASCII코드
- 구현
- 킹
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |