-
@ 411ccf90:1c7fa0d1
2025-02-23 22:01:40https://blossom.f7z.io/ef47a828a69326b8233bf87c7978aab8baa0d0b665d03119d38cc1be70e47ca6.png using even_odd_generator, plot looks like this. // def even_odd_generator(): global n result = 0 for i in range(256): n += 1 result = (result << 1) | ( n % 2) #print(f'{bin(result)[2:].zfill(256)}') n += 1 return result.to_bytes((result.bit_length() + 7) // 8, byteorder='big')