28. Results of Edge Expressions

Easy

Return a tuple (a, b, c) where (with numpy errors ignored): a = is np.array(0) / np.array(0) NaN?, b = int(np.array(0) // np.array(0)), c = float(np.array([np.nan]).astype(int).astype(float)[0]).

Implement solve(...)