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
- simulation
- Stack
- Data Structure
- implement
- Binary Tree
- java
- hash table
- Class
- two pointers
- 코테
- 파이썬
- Tree
- Math
- 자바
- Matrix
- 코딩테스트
- bit manipulation
- sorting
- database
- array
- 구현
- Binary Search
- Counting
- Method
- Number Theory
- geometry
- greedy
- dynamic programming
- SQL
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 문자열 섞기 본문
1. Input, Output, Example
- 두 문자열의 각 문자가 앞에서부터 서로 번갈아가면서 한 번씩 등장하는 문자열을 만들어 반환
2. Constraint
1) 1 ≤ str1의 길이 = str2의 길이 ≤ 10
2) str1과 str2는 알파벳 소문자로 이루어진 문자열이다.
3. Code
1) 첫 코드(2023/04/24)
class Solution {
public String solution(String str1, String str2) {
char[] c = new char[str1.length()*2];
for(int i=0 ; i<c.length/2 ; i++){
c[2*i] = str1.charAt(i);
c[2*i+1] = str2.charAt(i);
}
return new String(c);
}
}
- c.length/2나 str1.length()나 속도는 비슷한 듯하다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 9로 나눈 나머지 (0) | 2023.04.25 |
---|---|
[프로그래머스/Lv.0] n개 간격의 원소들 (0) | 2023.04.25 |
[프로그래머스/Lv.0] 특정한 문자를 대문자로 바꾸기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 문자열 돌리기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 접미사인지 확인하기 (0) | 2023.04.24 |