We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e46afec commit e8a640bCopy full SHA for e8a640b
0067-add-binary/0067-add-binary.ts
@@ -0,0 +1,3 @@
1
+function addBinary(a: string, b: string): string {
2
+ return (BigInt("0b" + a) + BigInt("0b" + b)).toString(2);
3
+};
0 commit comments