Rating: 4.0

This one had a smaller image hidden inside of the main image. If you look closely the odd pixels stand out. The pixels were evenly spaced though the horizontal spacing was not the same as the vertical spacing. I wrote a quick bit of python to solve this.

```
from PIL import Image
import numpy as np

img = Image.open("spaced-out.jpeg")
img_arr = np.asarray(img)
print(img_arr.shape)
new_img = []

column_num = 0
for column in img_arr:
if column_num%12==0:
pos = 0
tmp_row = []
for row in column:
if pos%11==0:
tmp_row.append(row)
pos += 1

new_img.append(tmp_row)
column_num += 1

ni = Image.fromarray(np.asarray(new_img))
ni.show()
```