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 |
%%
wage = 10;
salary_correct = wage * 40 * 50;
assert(isequal(ComputeSalary(wage),salary_correct))
|
2 | Pass |
%%
wage = 30;
salary_correct = wage * 40 * 50;
assert(isequal(ComputeSalary(wage),salary_correct))
|
3 | Pass |
%%
wage = 12.50;
salary_correct = wage * 40 * 50;
assert(isequal(ComputeSalary(wage),salary_correct))
|
23039 Solvers
Given two strings, find the maximum overlap
300 Solvers
244 Solvers
Create an index-powered vector
233 Solvers
217 Solvers