PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from itertools import chain
####################################
# These two lines enable unicode
####################################
import sys, codecs
sys.stdout = codecs.getwriter('utf_16')(sys.stdout.buffer, 'strict')
####################################
# If there were many windows you could
# look through to see a block of
# characters, this is the window you
# look through. Starts at 0.
blocknum = 9
# Displayed chars "per window"
# Adjust down if Time Limit Exceeded
blocksize = 1000
# How many columns fit your display?
# Try 6 if using "verbose" output
columns = 30
def main():
addTestCharacters()
# "dense" labels a line of chars
# "verbose" labels each char
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run