# webpbn.com Puzzle #23: Nonrepresentational Test Pattern
# Copyright 2004 by Jan Wolter
#
rows = 11
row_rule_len = 1
row_rules = [
    [1],
    [3],
    [1],
    [2],
    [1],
    [3],
    [3],
    [1],
    [2],
    [2],
    [4]
    ]

cols = 10
col_rule_len = 2
col_rules = [
    [0, 1],
    [0, 3],
    [0, 1],
    [2, 2],
    [0, 2],
    [0, 4],
    [0, 1],
    [0, 3],
    [0, 3],
    [0, 1]
    ]
