1 Comment

Great post - One suggestion is use a larger number(1E6) and also use log scale to see demonstrate how well it scale in relative terms

```

plt.plot(np.log(np.array(range(MAX_COUNT))), [np.log(x[0] + 1) for x in items], label = "n")

plt.plot(np.log(np.array(range(MAX_COUNT))), [np.log(x[1] + 1) for x in items], label = "v")

```

Expand full comment