코린이의 소소한 공부노트

[LeetCode/Easy] 2185. Counting Words With a Given Prefix 본문

코딩테스트 풀이/JAVA

[LeetCode/Easy] 2185. Counting Words With a Given Prefix

무지맘 2023. 1. 15. 23:27

1. Input

1) 문자열 배열 words

2) 문자열 pref

 

2. Output

1) words의 요소들 중 prefprefix로 하는 문자열의 개수를 반환

 

3. Constraint

1) 1 <= words.length <= 100

2) 1 <= words[i].length, pref.length <= 100

3) words의 요소와 pref는 영어 소문자로만 이루어져 있다.

 

4. Example

Input: words = ["pay","attention","practice","attend"], pref = "at" -> Output: 2

설명: words의 문자열들 중 at로 시작하는 단어는 attention, attend 2개뿐이다.

 

5. Code

1) 첫 코드(2022/06/15)

int count = 0;
for(int i=0 ; i<words.length ; i++)
    if(words[i].length() >= pref.length())
        if(words[i].substring(0,pref.length()).equals(pref))
            count++;

return count;