Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
dividend = '122333444455555666666777777788888888999999999';
divisor = 42;
quotient_correct = '2912701058465611111113756614021164023809523';
remainder_correct = 33;
[quotient,remainder]=strdiv(dividend,divisor);
while and(numel(quotient)>0,quotient(1)=='0')
quotient=quotient(2:end);
end
assert(isequal([quotient_correct ' ' num2str(remainder_correct)],[quotient ' ' num2str(remainder)]))
|
Replace NaNs with the number that appears to its left in the row.
1710 Solvers
random picture with random colours
125 Solvers
Back to basics 23 - Triangular matrix
532 Solvers
Find the largest value in the 3D matrix
897 Solvers
204 Solvers