12. Bar Chart from a DataFrame

Hard

Given a DataFrame df with a numeric column "sales", create an axes and draw a bar chart of that column's values (one bar per row) on it. Return the Axes.

Implement solve(...)