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
- hash table
- Number Theory
- greedy
- Matrix
- Method
- dynamic programming
- string
- Binary Search
- 구현
- Math
- SQL
- two pointers
- Stack
- Counting
- sorting
- array
- 파이썬
- Tree
- implement
- 코딩테스트
- Data Structure
- 자바
- bit manipulation
- Class
- simulation
- java
- 코테
- geometry
- database
- Binary Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 두 수의 합 본문
1. Input, Output, Example
- a + b의 값을 문자열로 반환
2. Constraint
1) 1 ≤ a의 길이 ≤ 100,000
2) 1 ≤ b의 길이 ≤ 100,000
3) a와 b는 숫자로만 이루어져 있다.
4) a와 b는 정수 0이 아니라면 0으로 시작하지 않는다.
3. Code
1) 첫 코드(2023/05/01)
import java.util.*;
class Solution {
public String solution(String a, String b) {
Stack<Integer> stack = new Stack<>();
int ai = a.length()-1, bi = b.length()-1, carry = 0;
while(ai>=0 || bi>=0){
int n = carry;
if(ai>=0)
n += a.charAt(ai--)-'0';
if(bi>=0)
n += b.charAt(bi--)-'0';
carry = n/10;
stack.push(n%10);
}
StringBuilder sb = new StringBuilder();
if(carry==1)
sb.append(1);
while(!stack.empty())
sb.append(stack.pop());
return sb.toString();
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 문자 개수 세기 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 문자열 겹쳐쓰기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 특정 문자열로 끝나는 가장 긴 부분 문자열 찾기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 커피 심부름 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 수열과 구간 쿼리 4 (0) | 2023.05.01 |