Skip to content

Latest commit

 

History

History

7-the-sum-of-binary-numbers

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

The sum of binary numbers

Purpose

Implement function binarySum which adds the transmitted binary numbers (as strings).

Example

binarySum('10', '01'); // `11`
binarySum('1101', '101'); // '10010'

Decision