11. Plot a Pandas Series

Medium

Given a pandas Series s (numeric index and values), create an axes and draw s's values as a line on it, using the Series' index as the x-axis. Return the Axes.

Implement solve(...)