짱아의 개발 기록장

LeetCode : 67. Add Binary 본문

Algorithm/LeetCode

LeetCode : 67. Add Binary

jungahshin 2021. 1. 24. 22:48
반응형

간단한 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