Last active
September 20, 2020 13:26
-
-
Save athas/7f2ee2f3927930a5f4695b5a08f05061 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import futhark_data | |
import sys | |
arr = next(futhark_data.loadb(sys.stdin.buffer.read())) | |
h, w = arr.shape | |
for i in range(h): | |
for j in range(w): | |
print(chr(arr[i,j]), end='') | |
print() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment