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 |
%%
celsiusValue = 1;
fahrValue = 33.8;
assert(isequal(ConvertCelsiusToFahrenheit(celsiusValue),fahrValue))
ans =
[]
|
2 | Pass |
%%
celsiusValue = 0;
fahrValue = 32.0;
assert(isequal(ConvertCelsiusToFahrenheit(celsiusValue),fahrValue))
ans =
[]
|
3 | Pass |
%%
celsiusValue = 100;
fahrValue = 212;
assert(isequal(ConvertCelsiusToFahrenheit(celsiusValue),fahrValue))
ans =
[]
|
4 | Pass |
%%
celsiusValue = -100;
fahrValue = -148;
assert(isequal(ConvertCelsiusToFahrenheit(celsiusValue),fahrValue))
ans =
[]
|
5 | Pass |
%%
celsiusValue = -10;
fahrValue = 14;
assert(isequal(ConvertCelsiusToFahrenheit(celsiusValue),fahrValue))
ans =
[]
|
Return a list sorted by number of occurrences
1225 Solvers
Calculate the Levenshtein distance between two strings
304 Solvers
279 Solvers
07 - Common functions and indexing 1
269 Solvers
145 Solvers