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
- hash table
- simulation
- 코딩테스트
- 파이썬
- sorting
- dynamic programming
- Data Structure
- greedy
- Number Theory
- Binary Search
- Binary Tree
- bit manipulation
- 구현
- java
- Stack
- geometry
- implement
- database
- Counting
- two pointers
- 코테
- array
- Tree
- Matrix
- 자바
- Method
- Class
- Math
- string
- SQL
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1961. Check If String Is a Prefix of Array 본문
1. Input
1) 문자열 s
2) 문자열 배열 words
2. Output
1) words의 맨 앞부터 요소들을 이어붙였을 때 s를 만들 수 있다면 true, 아니면 false를 반환
3. Constraint
1) 1 <= words.length <= 100
2) 1 <= words[i].length <= 20
3) 1 <= s.length <= 1000
4) s와 words는 영어 소문자로만 이루어져 있다.
4. Example
Input: s = "iloveleetcode", words = ["i","love","leetcode","apples"] -> Output: true
Input: s = "iloveleetcode", words = ["apples","i","love","leetcode"] -> Output: false
설명:
- words[0]부터 words[2]까지 이어붙이면 된다.
- words[1]부터 words[3]까지 어어붙이면 되지만, words[0]부터 시작한 것이 아니므로 false를 반환한다.
5. Code
1) 첫 코드(2022/07/13)
int index = 0;
for(int i=0 ; i<s.length() ; i++){
if(index>=words.length) return false;
if(s.length()<i+words[index].length()) return false;
if(!s.substring(i,i+words[index].length()).equals(words[index]))
return false;
i += words[index].length()-1;
index++;
}
return true;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1979. Find Greatest Common Divisor of Array (0) | 2023.01.09 |
---|---|
[LeetCode/Easy] 1967. Number of Strings That Appear as Substrings in Word (0) | 2023.01.09 |
[LeetCode/Easy] 1952. Three Divisors (0) | 2023.01.08 |
[LeetCode/Easy] 1941. Check if All Characters Have Equal Number of Occurrences (0) | 2023.01.08 |
[LeetCode/Easy] 1935. Maximum Number of Words You Can Type (0) | 2023.01.08 |