Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- https
- JavaScript
- 서울복층에어비앤비
- Codewars
- 남산타워뷰
- 7kyu
- 주민번호마스킹
- 서울에어비앤비
- Linux
- VMware
- 자바기초스터디
- class파일바로보기
- 이클립스
- 파이썬
- Eclipse
- java
- 6kyu
- 오류
- Oralce
- 사용자변경
- CentOS
- CentOS8
- Python
- 시즌1
- SQL
- 이것이리눅스다
- 8kyu
- 중첩쿼리
- monthPicker
- 멀티쓰레드프로그래밍
Archives
- Today
- Total
보통사람
[7kyu] 입력받은 배열에서 단일한 숫자를 반환 (Find the stray number) 본문
/**
* <pre>
* 입력받은 배열에서 단일한 숫자를 반환 (Find the stray number)
*
* 하나의 단일 숫자를 제외하고는 모두 동일한 홀수 길이의 정수 배열이 주어집니다.
* 그러한 배열을 받아들이는 메소드를 완성 해, 그 단일의 다른 번호를 돌려줍니다.
* 입력 배열은 항상 유효합니다! (홀수 길이> = 3)
*
* You are given an odd-length array of integers, in which all of them are the same, except for one single number.
* Complete the method which accepts such an array, and returns that single different number.
* The input array will always be valid! (odd-length >= 3)
* </pre>
*
* @param 정수형 배열
* @return 단일 숫자
* @author pej
* @date 2019. 03. 23.
* @example [1, 1, 2] ==> 2 [17, 17, 3, 17, 17, 17, 17] ==> 3
*/
public static int stray(int[] numbers) {
HashSet<Integer> set = new HashSet<>(); // 중복된 데이터를 가지고 있는 HashSet
for (int i = 0; i < numbers.length; i++) {
for (int j = i + 1; j < numbers.length; j++) {
if (numbers[i] == numbers[j]) {
set.add(numbers[i]);
}
}
}
int result = 0;
for (int num : numbers) {
if (!set.contains(num)) {
result = num;
}
}
return result;
}
'Codewars > Java' 카테고리의 다른 글
[6kyu] 카멜 케이스로 표기 (CamelCase Method) (0) | 2019.08.03 |
---|---|
[7kyu] 문자 마스킹 처리 (Credit Card Mask) (0) | 2019.08.03 |
[7kyu] 정규식 PIN 코드 유효성 검사(Regex validate PIN code) (0) | 2019.08.03 |
[7kyu] 문자열 역순 (Reverse Letter) (0) | 2019.08.03 |
[7kyu] 입력받은 문자열 역순으로 출력 (Reverse words) (0) | 2019.08.03 |