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
- geometry
- implement
- Data Structure
- array
- java
- 파이썬
- Method
- Class
- greedy
- 코딩테스트
- Math
- 코테
- 구현
- hash table
- bit manipulation
- Matrix
- SQL
- database
- Binary Tree
- simulation
- Binary Search
- Stack
- dynamic programming
- sorting
- Counting
- two pointers
- Tree
- 자바
- Number Theory
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 부분 문자열 본문
1. Input, Output, Example
- str1이 str2의 부분 문자열이라면 1을 부분 문자열이 아니라면 0을 반환
2. Constraint
1) 1 ≤ str1 ≤ str2 ≤ 20
2) str1과 str2는 영어 소문자로만 이루어져 있다.
3. Code
1) 첫 코드(2023/04/24)
class Solution {
public int solution(String str1, String str2) {
return str2.indexOf(str1)!=-1 ? 1 : 0;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] n보다 커질 때까지 더하기 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 원소들의 곱과 합 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 배열에서 문자열 대소문자 변환하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 덧셈식 출력하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 더 크게 합치기 (0) | 2023.04.24 |