Problem 67: Add Binary
思路
逐位加法
配合两根指针从后往前扫,最后检查有没有剩下的
易错点
char 转 int
注意: 一定记得加上
(int)
来 cast 这个 char 到 intString 转 int
开头交换数字,保证长短的顺序
Last updated
Was this helpful?
逐位加法
配合两根指针从后往前扫,最后检查有没有剩下的
char 转 int
注意: 一定记得加上 (int)
来 cast 这个 char 到 int
String 转 int
开头交换数字,保证长短的顺序
Last updated
Was this helpful?