Skip to content

Commit 24dc3c1

Browse files
committed
[level 2] Title: 전화번호 목록, Time: 364.95 ms, Memory: 98.9 MB -BaekjoonHub
1 parent 26fee1a commit 24dc3c1

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

프로그래머스/2/42577. 전화번호 목록/README.md

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

55
### 성능 요약
66

7-
메모리: 97.9 MB, 시간: 331.14 ms
7+
메모리: 98.9 MB, 시간: 364.95 ms
88

99
### 구분
1010

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

1717
### 제출 일자
1818

19-
2026년 02월 06일 14:56:26
19+
2026년 02월 11일 16:15:37
2020

2121
### 문제 설명
2222

프로그래머스/2/42577. 전화번호 목록/전화번호 목록.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ public boolean solution(String[] phone_book) {
55
Arrays.sort(phone_book);
66

77
for (int i = 0 ; i < phone_book.length - 1; i++) {
8-
String currentNumber = phone_book[i];
9-
10-
if (phone_book[i + 1].startsWith(currentNumber)) {
8+
if (phone_book[i + 1].startsWith(phone_book[i])) {
119
return false;
1210
}
1311
}

0 commit comments

Comments
 (0)