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
- greedy
- Matrix
- array
- geometry
- 자바
- database
- Method
- java
- Class
- 파이썬
- Number Theory
- Tree
- bit manipulation
- Counting
- Data Structure
- SQL
- two pointers
- 코테
- dynamic programming
- sorting
- hash table
- 구현
- Math
- string
- implement
- Stack
- simulation
- Binary Tree
- 코딩테스트
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 접두사인지 확인하기 본문
1. Input, Output, Example
어떤 문자열에 대해서 접두사는 맨 앞에서부터 특정 인덱스까지의 문자열을 의미한다.
- is_prefix가 my_string의 접두사라면 1을, 아니면 0을 반환
2. Constraint
1) 1 ≤ my_string의 길이 ≤ 100
2) 1 ≤ is_prefix의 길이 ≤ 100
3) my_string과 is_prefix는 영소문자로만 이루어져 있다.
3. Code
1) 첫 코드(2023/04/24)
class Solution {
public int solution(String my_string, String is_prefix) {
return my_string.indexOf(is_prefix)==0 ? 1 : 0;
}
}
2) 비교를 위해 작성한 코드(2023/04/24)
class Solution {
public int solution(String my_string, String is_prefix) {
boolean answer;
if(my_string.length()<is_prefix.length())
answer = false;
else
answer = my_string.substring(0,is_prefix.length()).equals(is_prefix);
return answer ? 1 : 0;
}
}
- 1번이 낫다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 이어 붙인 수 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 홀짝에 따라 다른 값 반환하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 꼬리 문자열 (0) | 2023.04.24 |
[프로그래머스/Lv.0] A 강조하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] n보다 커질 때까지 더하기 (0) | 2023.04.24 |