commit 00000000782f5e045759269fbc36ba0489fa9d15 Author: Michael Zhang Date: Thu Jan 19 02:47:24 2023 -0600 participation diff --git a/participation/0.py b/participation/0.py new file mode 100644 index 000000000..a1ee0e9 --- /dev/null +++ b/participation/0.py @@ -0,0 +1,12 @@ +# Header +header = "P3 512 512 255" # 14 bytes + +# Black pixels +# Counting leading pixels, every value takes up 2 bytes +black_image_len = len(header) + (2 * 512 * 512) +print(black_image_len) # 524302 + +# White pixels +# Counting leading pixels, every value takes up 4 bytes +white_image_len = len(header) + (4 * 512 * 512) +print(white_image_len) # 1048590