5 kyu
Bit calculator
1,446 of 2,115riomus
Description:
In this kata your task is to create bit calculator. Function arguments are two bit representation of numbers ("101","1","10"...), and you must return their sum in decimal representation.
Test.expect(calculate("10","10") == 4);
Test.expect(calculate("10","0") == 2);
Test.expect(calculate("101","10") == 7);
parseInt and some Math functions are disabled.
Those Math functions are enabled: pow,round,random
Bits
Mathematics
Algorithms
Similar Kata:
Stats:
Created | Feb 1, 2014 |
Published | Feb 1, 2014 |
Warriors Trained | 3543 |
Total Skips | 577 |
Total Code Submissions | 7707 |
Total Times Completed | 2115 |
JavaScript Completions | 1446 |
C# Completions | 674 |
Total Stars | 66 |
% of votes with a positive feedback rating | 90% of 300 |
Total "Very Satisfied" Votes | 244 |
Total "Somewhat Satisfied" Votes | 52 |
Total "Not Satisfied" Votes | 4 |
Total Rank Assessments | 13 |
Average Assessed Rank | 5 kyu |
Highest Assessed Rank | 3 kyu |
Lowest Assessed Rank | 6 kyu |