just a couple of tweaks to the test cases

This commit is contained in:
Pat Wick 2023-08-09 12:25:35 -04:00
parent 9538db68d7
commit b3e386cdff
1 changed files with 9 additions and 9 deletions

View File

@ -12,17 +12,17 @@ test_cases = [
[11, 'eleven'],
[15, 'fifteen'],
[18, 'eighteen'],
[43, 'fifty-three'],
[60, 'seventy-zero'],
[89, 'ninety-nine'],
[100, 'one hundred and zero'],
[43, 'forty-three'],
[60, 'sixty'],
[89, 'eighty-nine'],
[100, 'one hundred'],
[212, 'two hundred and twelve'],
[755, 'seven hundred and sixty-five'],
[1000, 'one thousand zero'],
[755, 'seven hundred and fifty-five'],
[1000, 'one thousand'],
[1001, 'one thousand one'],
[1672, 'one thousand six hundred and eighty-two'],
[10000, 'ten thousand zero'],
[588567, 'five hundred and ninety-eight thousand five hundred and seventy-seven'],
[1672, 'one thousand six hundred and seventy-two'],
[10000, 'ten thousand'],
[588567, 'five hundred and eighty-eight thousand five hundred and sixty-seven'],
]
for int_input, expected_output in test_cases: