Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- implement
- 자바
- two pointers
- dynamic programming
- Class
- Method
- Counting
- sorting
- bit manipulation
- 코딩테스트
- hash table
- Data Structure
- Math
- geometry
- 구현
- array
- Matrix
- 코테
- greedy
- Binary Search
- SQL
- java
- Number Theory
- database
- Binary Tree
- simulation
- Tree
- string
- Stack
- 파이썬
Archives
- Today
- Total
코린이의 소소한 공부노트
[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:551. 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;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2124. Check if All A's Appears Before All B's (0) | 2023.01.13 |
---|---|
[LeetCode/Easy] 2119. A Number After a Double Reversal (0) | 2023.01.13 |
[LeetCode/Easy] 2108. Find First Palindromic String in the Array (0) | 2023.01.13 |
[LeetCode/Easy] 66. Plus One (0) | 2023.01.12 |
[LeetCode/Easy] 2103. Rings and Rods (0) | 2023.01.12 |