Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1/3;
assert(isequal(red_tulip(x),y_correct))
ans =
0.3333
|
2 | Pass |
x = 3;
y_correct = (1/3)^3;
assert(isequal(red_tulip(x),y_correct))
ans =
0.0370
|
3 | Pass |
x = 10;
y_correct = (1/3)^10;
assert(isequal(red_tulip(x),y_correct))
ans =
1.6935e-05
|
2197 Solvers
309 Solvers
Find the square of the sum of the digits of a number
119 Solvers
125 Solvers
127 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!