Daily LeetCode Challenge - 67. Add Binary

Min Young Kim·2023년 2월 14일
0

algorithm

목록 보기
73/198

Problem From.

https://leetcode.com/problems/add-binary/

오늘 문제는 2진수로 되어있는 문자의 합을 다시 2진수로 반환하면 되는 문제였다.

처음에 .toInt(2) 로 코드를 작성하였다가 너무 큰 a 값과 b 의 값이 들어와서,
.toBigInteger(2) 로 수정해주었다.

class Solution {
    fun addBinary(a: String, b: String): String {
        return (a.toBigInteger(2) + b.toBigInteger(2)).toString(2)
    }
}
profile
길을 찾는 개발자

0개의 댓글