Build df = pd.DataFrame(np.random.RandomState(30).randint(1, 101, size=(8, 8))). Return a list of the (column, row) index locations of the 3 largest values, ascending.
df = pd.DataFrame(np.random.RandomState(30).randint(1, 101, size=(8, 8)))
(column, row)
solve(...)