105. Save Multiple Named Arrays with savez

Medium

Save arrays a and b into a single .npz archive under the names "first" and "second" (using an in-memory io.BytesIO buffer in place of a real file), then load the archive back and return second - first.

Implement solve(...)