코린이의 소소한 공부노트

[LeetCode/Easy] 2114. Maximum Number of Words Found in Sentences 본문

코딩테스트 풀이/JAVA

[LeetCode/Easy] 2114. Maximum Number of Words Found in Sentences

무지맘 2023. 1. 13. 17:55

1. Input

1) 문자열 배열 sentences

 

2. Output

1) 한 문장에 나타나는 단어 수 중 가장 큰 것을 반환

 

3. Constraint

1) 1 <= sentences.length <= 100

2) 1 <= sentences[i].length <= 100

3) sentences의 모든 문장들은 영어 소문자와 공백 문자로 이루어져 있다.

4) 공백 문자는 단어를 구분할 때 1개씩 사용되고, 불필요한 공백 문자는 없다.

 

4. Example

Input: sentences = ["alice and bob love leetcode", "i think so too", "this is great thanks very much"] -> Output: 6

설명: 배열에는 총 3개의 문장이 있고, 각 문장의 단어 수는 [5, 4, 6]이므로 가장 큰 6을 반환한다.

 

5. Code

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

int max = 0;
for(int i=0 ; i<sentences.length ; i++){
    int len = sentences[i].split(" ").length;
    max = len>max ? len : max;
} // for i
return max;