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
- Math
- 파이썬
- SQL
- simulation
- bit manipulation
- Number Theory
- Binary Search
- 구현
- Tree
- greedy
- geometry
- Counting
- Stack
- hash table
- implement
- Binary Tree
- 코딩테스트
- sorting
- two pointers
- Class
- Data Structure
- java
- 자바
- Method
- array
- Matrix
- 코테
- dynamic programming
- database
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 문자열로 변환 본문
1. Input
1) int n
2. Output
1) n을 문자열로 변환한 결과
3. Constraint
1) 1 ≤ n ≤ 10000
4. Example
Input: n=123 -> Output: “123”
5. Code
1) 첫 코드(2023/04/22)
return n+"";
2) 비교해보기 위해 돌려본 코드(2023/04/22)
return String.valueOf(n);
- 2번이 훨~씬 빠르다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 문자열 곱하기 (0) | 2023.04.22 |
---|---|
[프로그래머스/Lv.0] 문자열의 앞의 n글자 (0) | 2023.04.22 |
[프로그래머스/Lv.0] 공배수 (0) | 2023.04.22 |
[프로그래머스/Lv.0] 문자열을 정수로 변환하기 (0) | 2023.04.22 |
[프로그래머스/Lv.0] n의 배수 (0) | 2023.04.22 |