This only works for coefficients<100.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
assert(isequal(guess_the_coefficients(@(x)x^2+2*x+15),[1 2 15]))
|
2 | Pass |
%%
assert(isequal(guess_the_coefficients(@(x)polyval(53,x)),53))
|
3 | Pass |
%%
assert(isequal(guess_the_coefficients(@(x)polyval([54 87],x)),[54 87]))
|
4 | Pass |
%%
assert(isequal(guess_the_coefficients(@(x)polyval([49 40 68],x)),[49 40 68]))
|
5 | Pass |
%%
assert(isequal(guess_the_coefficients(@(x)polyval([75 53 35 15],x)),[75 53 35 15]))
|
6 | Pass |
%%
assert(isequal(guess_the_coefficients(@(x)polyval([59 27 5 76 25],x)),[59 27 5 76 25]))
|
Project Euler: Problem 6, Natural numbers, squares and sums.
782 Solvers
144 Solvers
323 Solvers
Fahrenheit to Celsius converter
262 Solvers
203 Solvers