Skip to content

Commit 41c2931

Browse files
committed
[level 2] Title: 전화번호 목록, Time: 322.58 ms, Memory: 97.7 MB -BaekjoonHub
1 parent 24dc3c1 commit 41c2931

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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-
메모리: 98.9 MB, 시간: 364.95 ms
7+
메모리: 97.7 MB, 시간: 322.58 ms
88

99
### 구분
1010

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

1717
### 제출 일자
1818

19-
2026년 02월 11일 16:15:37
19+
2026년 02월 11일 16:19:03
2020

2121
### 문제 설명
2222

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ class Solution {
44
public boolean solution(String[] phone_book) {
55
Arrays.sort(phone_book);
66

7-
for (int i = 0 ; i < phone_book.length - 1; i++) {
8-
if (phone_book[i + 1].startsWith(phone_book[i])) {
7+
for (int i = 0; i < phone_book.length - 1; i++) {
8+
if (phone_book[i + 1].indexOf(phone_book[i]) == 0) {
99
return false;
1010
}
1111
}

0 commit comments

Comments
 (0)