97. Outer Product with einsum

Hard

Using einsum notation, return the outer product of vectors A and B: an (len(A), len(B)) matrix whose [i, j] entry is A[i] * B[j].

Implement solve(...)