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 | 31 |
Tags
- c++
- Smilegate
- 1편
- 알고리즘
- BFS
- LIS #Algorithm #요소추적
- 스마일게이트
- 유니온파인드
- 중반부
- 코테
- 서버개발캠프
- 보석쇼핑
- 소감
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- BaekJoon
- 투포인터
- Union-find
- Algorithm
- 백준
- 코딩테스트
- 카카오인턴
- 카카오
- 삼성 #코테 #2020상반기 #c++
- 식단
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 67. Add Binary 본문
반응형
간단한 String문제였다.
[메인 로직]
각 자리수의 합이 2이상이라면 next변수에 1을 넣어서 넘겨주고 2을 뺀 남은 값을 계속 문자열에 붙여주었다.
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
31
32
33
34
35
36
37
38
39
40
|
class Solution {
public:
string addBinary(string a, string b) {
int idx1 = a.size()-1;
int idx2 = b.size()-1;
int next = 0;
string s = "";
while(idx1>=0 || idx2>=0){
int x=0, y=0;
int temp = 0;
if(idx1>=0){
x = a[idx1--]-'0';
}
if(idx2>=0){
y = b[idx2--]-'0';
}
if(next+x+y>=2){
temp = next+x+y-2;
next = 1;
}else{
temp = next+x+y;
next = 0;
}
s += to_string(temp);
}
if(next==1){
s += to_string(next);
}
string ans = "";
for(int i=s.size()-1; i>=0; i--){
ans += s[i];
}
return ans;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 59. Spiral Matrix II (0) | 2021.02.02 |
---|---|
LeetCode : 264. Ugly Number II (0) | 2021.01.26 |
LeetCode : 35. Search Insert Position (0) | 2021.01.23 |
64. Minimum Path Sum (0) | 2021.01.22 |
LeetCode : 63. Unique Paths II (0) | 2021.01.22 |
Comments