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
- SQL
- bit manipulation
- Matrix
- Number Theory
- 구현
- Counting
- sorting
- array
- greedy
- Stack
- string
- simulation
- two pointers
- Math
- 코딩테스트
- geometry
- Data Structure
- hash table
- Tree
- 자바
- dynamic programming
- implement
- 코테
- 파이썬
- database
- java
- Binary Tree
- Class
- Method
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2185. Counting Words With a Given Prefix 본문
1. Input
1) 문자열 배열 words
2) 문자열 pref
2. Output
1) words의 요소들 중 pref를 prefix로 하는 문자열의 개수를 반환
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;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2220. Minimum Bit Flips to Convert Number (0) | 2023.01.15 |
---|---|
[LeetCode/Easy] 2194. Cells in a Range on an Excel Sheet (0) | 2023.01.15 |
[LeetCode/Easy] 2180. Count Integers With Even Digit Sum (0) | 2023.01.15 |
[LeetCode/Easy] 2176. Count Equal and Divisible Pairs in an Array (0) | 2023.01.15 |
[LeetCode/Medium] 1689. Partitioning Into Minimum Number Of Deci-Binary Numbers (0) | 2023.01.15 |