7 kyu
Debug Basic Calculator
1,736 of 4,627Fosna
Description:
Debug a function called calculate that takes 3 values. The first and third values are numbers. The second value is a character. If the character is "+" , "-", "*", or "/", the function will return the result of the corresponding mathematical function on the two numbers. If the string is not one of the specified characters, the function should return null.
calculate(2,"+", 4); //Should return 6
calculate(6,"-", 1.5); //Should return 4.5
calculate(-4,"*", 8); //Should return -32
calculate(49,"/", -7); //Should return -7
calculate(8,"m", 2); //Should return null
calculate(4,"/",0) //should return null
Kind of a fork (not steal :)) of Basic Calculator kata by TheDoctor.
Fundamentals
Debugging
Similar Kata:
Stats:
Created | Nov 1, 2015 |
Published | Nov 1, 2015 |
Warriors Trained | 5955 |
Total Skips | 89 |
Total Code Submissions | 14560 |
Total Times Completed | 4627 |
JavaScript Completions | 2752 |
Python Completions | 1736 |
Ruby Completions | 238 |
Total Stars | 40 |
% of votes with a positive feedback rating | 91% of 903 |
Total "Very Satisfied" Votes | 765 |
Total "Somewhat Satisfied" Votes | 118 |
Total "Not Satisfied" Votes | 20 |