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
- Number Theory
- Binary Tree
- Class
- dynamic programming
- two pointers
- 파이썬
- array
- greedy
- 코딩테스트
- hash table
- bit manipulation
- sorting
- Method
- database
- geometry
- 자바
- string
- Stack
- Counting
- Math
- java
- Matrix
- implement
- Data Structure
- SQL
- 코테
- simulation
- 구현
- Tree
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2255. Count Prefixes of a Given String 본문
1. Input
1) 문자열 배열 words
2) 문자열 s
2. Output
1) words의 요소들 중 s의 prefix가 되는 요소들의 개수
3. Constraint
1) 1 <= words.length <= 1000
2) 1 <= words[i].length, s.length <= 10
3) words의 요소와 s는 영어 소문자로 이루어져 있다.
4. Example
Input: words = ["a","b","c","ab","bc","abc"], s = "abc" -> Output: 3
설명: abc의 prefix가 될 수 있는 words의 요소에는 a, ab, abc의 3개가 있다.
5. Code
1) 첫 코드(2022/06/27)
int count = 0;
for(int i=0 ; i<words.length ; i++){
if(s.length() < words[i].length())
continue;
if(s.substring(0,words[i].length()).equals(words[i]))
count++;
}
return count;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2269. Find the K-Beauty of a Number (0) | 2023.01.16 |
---|---|
[LeetCode/Easy] 2264. Largest 3-Same-Digit Number in String (0) | 2023.01.16 |
[LeetCode/Easy] 2236. Root Equals Sum of Children (0) | 2023.01.16 |
[LeetCode/Easy] 2235. Add Two Integers (0) | 2023.01.16 |
[LeetCode/Easy] 2224. Minimum Number of Operations to Convert Time (0) | 2023.01.15 |