티스토리 뷰
문제
https://programmers.co.kr/learn/courses/30/lessons/12906?language=java
풀이
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import java.util.*; public class Solution { public int[] solution(int []arr) { List<Integer> list = new ArrayList<>(); int temp = -1; for(int i: arr) { if(temp == i) {} else list.add(i); temp = i; } int[] result = new int[list.size()]; for(int i=0; i<list.size(); i++) result[i] = list.get(i); return result; } } | cs |
생각
이전 숫자와 비교하여 처리하였다.
'알고리즘' 카테고리의 다른 글
[프로그래머스] 2018 하반기 공채 대비 코딩테스트 실전 모의고사 1회 (0) | 2018.09.02 |
---|---|
[프로그래머스] 가장 긴 팰린드롬 (0) | 2018.06.10 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2018.06.10 |
[프로그래머스] 2016년 (0) | 2018.06.10 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday