Skip to content

Latest commit

 

History

History
48 lines (27 loc) · 685 Bytes

0125.valid-palindrome.md

File metadata and controls

48 lines (27 loc) · 685 Bytes

0125.Valid-Palindrome

Description

Given two binary strings, return their sum (also a binary string).

The input strings are both non-empty and contains only characters 1 or 0.

Example 1:

Input: a = "11", b = "1"
Output: "100"

Example 2:

Input: a = "1010", b = "1011"
Output: "10101"

Tags: Math, String

题意

求2数之和

题解

思路1

。。。。

思路2

思路2 ```go

```

结语

如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:awesome-golang-algorithm