# webpbn.com Puzzle #1: Demo Puzzle from Front Page
# Copyright 2004 by Jan Wolter
#
rows = 10
row_rule_len = 2
row_rules = [
    [0, 2],
    [2, 1],
    [1, 1],
    [0, 3],
    [1, 1],
    [1, 1],
    [0, 2],
    [1, 1],
    [1, 2],
    [0, 2]
    ]

cols = 5
col_rule_len = 3
col_rules = [
    [0, 2, 1],
    [2, 1, 3],
    [0, 0, 7],
    [0, 1, 3],
    [0, 2, 1]
    ]
