Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
hw = [66 155;60 140;72 166;58 160;75 215];
bmi_correct = [25.0700;27.3990;22.5607;33.5100;26.9293];
assert(all(abs(bmi_calculator(hw) - bmi_correct) < 1e-4))
|
2 | Pass |
hw = [10 80];
bmi_correct = 563.6375;
assert(all(abs(bmi_calculator(hw) - bmi_correct) < 1e-4))
|
Remove all the words that end with "ain"
1026 Solvers
Number of 1s in the Binary Representation of a Number
319 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
138 Solvers
find the surface area of a cube
215 Solvers
87 Solvers