Skip to content

Latest commit

 

History

History
30 lines (15 loc) · 336 Bytes

File metadata and controls

30 lines (15 loc) · 336 Bytes

Add Binary

描述

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

For example,

a = "11"
b = "1"

Return 100.

分析

代码

{% codesnippet "./code/add-binary."+book.suffix, language=book.suffix %}{% endcodesnippet %}

相关题目