Given an integer n, return the coefficients
c = [c_n,c_n-1,...,c_0]
Such that
10^n = c_n*4^(n) + c_n-1*4^(n-1) +...+ c_0*4^(0)
With the constraint that
c_n = c_0
For example,
n = 1 10^n = 10 = 2*4^(1) + 2*4^(0), so c = [2 2]
2276 Solvers
434 Solvers
138 Solvers
328 Solvers
Sum of odd numbers in a matrix
231 Solvers