码迷,mamicode.com
首页 > 其他好文 > 详细

7kyu Binary Addition

时间:2017-08-08 13:56:39      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:after   ddb   for   imp   and   number   ring   nbsp   version   

题目:

Implement a function that adds two numbers together and returns their sum in binary. The conversion can be done before, or after the addition.

The binary number returned should be a string.

 

答案:

// 1
function addBinary (a, b) {
  return (a + b).toString(2);
}

// 2
function addBinary (a, b) {
  return ((a + b) >>> 0).toString(2);
}

// 3
const addBinary = (a, b) => (a + b).toString(2);

7kyu Binary Addition

标签:after   ddb   for   imp   and   number   ring   nbsp   version   

原文地址:http://www.cnblogs.com/tong24/p/7306265.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!