// Given a wall of size of 4 * n and tiles of size(1,4) and (4,1)
// How many ways you could u build the wall
// f(n) = f(n-4) + f(n-1)
I have solved the question using recursion and Dp but when I attempt Matrix Exponentiation I am getting a different answer …Could you please look into my Code