This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
tC = 1;
tK_correct = 274;
assert(isequal(celsius_to_kelvin(tC),tK_correct))
|
2 | Pass |
tC = -273;
tK_correct = 0;
assert(isequal(celsius_to_kelvin(tC),tK_correct))
|
3 | Pass |
tC = 100;
tK_correct = 373;
assert(isequal(celsius_to_kelvin(tC),tK_correct))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
11629 Solvers
17152 Solvers
1123 Solvers
Reverse the Words (not letters) of a String
244 Solvers
254 Solvers