Matplotlib - Seaborn Integration
Find the mistake in this code snippet:
import seaborn as sns
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
sns.histplot(data=[1,2,3,4], ax=plt)
ax.set_title('Histogram')
plt.show()