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 |
d = 1;
b = '1';
assert(isequal(dec2bin_fractions(d),b))
|
2 | Fail |
d = 2.5;
b = '10.1';
assert(isequal(dec2bin_fractions(d),b))
ans =
'10.01'
|
3 | Fail |
d = 34.125;
b = '100010.001';
assert(isequal(dec2bin_fractions(d),b))
ans =
'100010.0001'
|
4 | Fail |
d = 452.8125;
b = '111000100.1101';
assert(isequal(dec2bin_fractions(d),b))
ans =
'111000100.1'
|
121 Solvers
Project Euler: Problem 3, Largest prime factor
170 Solvers
206 Solvers
Permute diagonal and antidiagonal
179 Solvers
479 Solvers