Skip to content

Instantly share code, notes, and snippets.

@Filip-Mitov
Filip-Mitov / NonogramPythonLogo.py
Last active August 29, 2015 13:59
Nonogram test with python logo
import unittest
from solution import validate_nonogram
class TestValidateNonogram(unittest.TestCase):
def test_validate_python_nonogram(self):
rows = [[12], [14], [3, 11], [3, 11], [16],
[16], [16], [7], [26], [22, 1],
[23, 1], [23, 1], [23, 1], [22, 1], [21, 1],