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))
|
Back to basics 11 - Max Integer
678 Solvers
Return elements unique to either input
550 Solvers
Find nearest prime number less than input number
268 Solvers
264 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!