Skip to content

Commit b26b39d

Browse files
committed
Arguments to Binary addition solution
1 parent b0be925 commit b26b39d

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ My Codewars solutions in various languages.
1919
- [Get the Middle Character (7 kyu)](https://www.codewars.com/kata/get-the-middle-character) [[solution](https://github.com/PaulNoth/codewars/blob/master/get-the-middle-character/solution.md)] [[java](https://github.com/PaulNoth/codewars/blob/master/get-the-middle-character/Kata.java)] [[javascript](https://github.com/PaulNoth/codewars/blob/master/get-the-middle-character/kata.js)]
2020
- [Basic variable assignment (8 kyu)](https://www.codewars.com/kata/basic-variable-assignment) [[solution](https://github.com/PaulNoth/codewars/blob/master/basic-variable-assignment/solution.md)] [[javascript](https://github.com/PaulNoth/codewars/blob/master/basic-variable-assignment/kata.js)]
2121
- [Not so black box (8 kyu)](https://www.codewars.com/kata/not-so-black-box) [[solution](https://github.com/PaulNoth/codewars/blob/master/not-so-black-box/solution.md)] [[javascript](https://github.com/PaulNoth/codewars/blob/master/not-so-black-box/kata.js)]
22+
- [Arguments to Binary addition (8 kyu)](https://www.codewars.com/kata/arguments-to-binary-addition) [[solution](https://github.com/PaulNoth/codewars/blob/master/arguments-to-binary-addition/solution.md)] [[javascript](https://github.com/PaulNoth/codewars/blob/master/arguments-to-binary-addition/kata.js)]

arguments-to-binary-addition/kata.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
function arr2bin(arr){
2+
let sum = 0;
3+
arr.forEach(i => {
4+
if(typeof i === 'number') {
5+
sum += i;
6+
}
7+
});
8+
return sum.toString(2);
9+
}
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### Arguments to Binary addition
2+
3+
First I filtered only numbers and then add them to calculated sum. After that I converted the sum to binary format.

0 commit comments

Comments
 (0)