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 |
nums = [0,1,10,25,26,52,100,260];
words = {'a','b','k','z','ba','ca','dw','ka'};
for n=1:length(nums)
assert(strcmpi(words{n},dec2alpha(nums(n))));
end
|
2 | Pass |
nums = [35664,62366];
words = {'cats','dogs'};
for n=1:length(nums)
assert(strcmpi(words{n},dec2alpha(nums(n))));
end
|
3 | Pass |
assert(strcmpi('matlab', dec2alpha(142917893)));
|
739 Solvers
261 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
401 Solvers
530 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!