Write a function matrix power(A, n) that computes the power
An using Boolean arithmetic and returns the result. You
may assume that A is a 2D list containing only 0s and 1s, A is
square (same number of rows and columns), and n is an integer ≥ 1.
You should call your previously written matrix multiply boolean
function.
Example: Let R = [ [0, 0, 0, 1], [0, 1, 1, 0], [0, 0, 0, 1], [0,
0, 1, 0] ]...