-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
13 lines (12 loc) · 560 Bytes
/
Copy pathMain.java
File metadata and controls
13 lines (12 loc) · 560 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
package leetcode._67_;
/**
* Created by zhangbo54 on 2019-03-04.
*/
public class Main {
public static void main(String[] args) {
Solution solution = new Solution();
System.out.println(solution.addBinary("1010", "1011"));
System.out.println(solution.addBinary("11", "1"));
System.out.println(solution.addBinary("10100000100100110110010000010101111011011001101110111111111101000000101111001110001111100001101", "110101001011101110001111100110001010100001101011101010000011011011001011101111001100000011011110011"));
}
}