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
- 코딩테스트
- two pointers
- Binary Search
- Method
- java
- 구현
- database
- Counting
- simulation
- 코테
- Data Structure
- sorting
- 파이썬
- Number Theory
- SQL
- dynamic programming
- hash table
- Matrix
- greedy
- 자바
- string
- Tree
- array
- implement
- bit manipulation
- Binary Tree
- Stack
- geometry
- Class
- Math
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 문자열 붙여서 출력하기 본문
1. Input, Output, Example
- str1과 str2을 이어서 출력하는 코드를 작성
2. Constraint
1) 1 ≤ str1, str2의 길이 ≤ 10
3. Code
1) 첫 코드(2023/04/24)
import java.util.*;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print(sc.next()+sc.next());
}
}
- 개수가 적어서 그런지 BufferedReader를 이용하는 것보다 빨랐다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 원하는 문자열 찾기 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 공백으로 구분하기 1 (0) | 2023.04.24 |
[프로그래머스/Lv.0] rny_string (0) | 2023.04.24 |
[프로그래머스/Lv.0] 주사위 게임 1 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 부분 문자열인지 확인하기 (0) | 2023.04.24 |