Skip to content

Commit ad96855

Browse files
committed
[level 1] Title: 폰켓몬, Time: 11.54 ms, Memory: 76.9 MB -BaekjoonHub
1 parent 520fe9c commit ad96855

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

프로그래머스/1/1845. 폰켓몬/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### 성능 요약
66

7-
메모리: 95.3 MB, 시간: 3.40 ms
7+
메모리: 76.9 MB, 시간: 11.54 ms
88

99
### 구분
1010

@@ -16,7 +16,7 @@
1616

1717
### 제출 일자
1818

19-
2025년 05월 13일 22:05:38
19+
2025년 05월 13일 22:11:03
2020

2121
### 문제 설명
2222

프로그래머스/1/1845. 폰켓몬/폰켓몬.java

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,6 @@ public int solution(int[] nums) {
99
set.add(num);
1010
}
1111

12-
int answer = 0;
13-
int num = nums.length/2;
14-
int size = set.size();
15-
16-
if(size >= num){
17-
answer = num;
18-
}else{
19-
answer = size;
20-
}
21-
22-
return answer;
23-
// return 0;
12+
return (set.size() >= nums.length/2)? nums.length/2 : set.size();
2413
}
2514
}

0 commit comments

Comments
 (0)