Skip to content

Instantly share code, notes, and snippets.

View pwaller's full-sized avatar
🔢
🔨

Peter Waller pwaller

🔢
🔨
  • Manchester, UK
View GitHub Profile
#! /usr/bin/env python
"""
Convert roman numerals. To test: `nosetests roman.py`.
"""
import nose.tools
KNOWN_VALUES = [
(1, 'I'),
(5, 'V'),