Skip to content

New feature: Support for converting numbers in a larger range. #12576

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5de6f72
New feature: Support for converting numbers in a larger range.
lighting9999 Feb 10, 2025
1e48591
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 10, 2025
f5cdd52
Update roman_numerals.py
lighting9999 Feb 10, 2025
eb8598f
Update roman_numerals.py
lighting9999 Feb 10, 2025
ad28671
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 10, 2025
8499e59
Update roman_numerals.py
lighting9999 Feb 10, 2025
99a081b
Update roman_numerals.py
lighting9999 Feb 10, 2025
bcfd98c
Update roman_numerals.py
lighting9999 Feb 10, 2025
1735aed
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 10, 2025
6bff121
Update roman_numerals.py
lighting9999 Feb 10, 2025
dd13fe2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 10, 2025
8b10293
Update roman_numerals.py
lighting9999 Feb 10, 2025
5e41453
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 10, 2025
657073d
Update roman_numerals.py
lighting9999 Feb 10, 2025
da299d4
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 10, 2025
ba43420
Update roman_numerals.py
lighting9999 Feb 10, 2025
e6ea0ba
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 10, 2025
07721a8
Update roman_numerals.py
lighting9999 Feb 10, 2025
668b78a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 10, 2025
f4682f1
Update roman_numerals.py
lighting9999 Feb 10, 2025
30a49b3
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update roman_numerals.py
  • Loading branch information
lighting9999 authored Feb 10, 2025
commit 8499e59ae56a52fab514fb4a7c34bcf2fcf3810e
4 changes: 2 additions & 2 deletions conversions/roman_numerals.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@
break
return "".join(result)

if __name__ == "__main__":

Check failure on line 65 in conversions/roman_numerals.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff

conversions/roman_numerals.py:65:1: SyntaxError: unindent does not match any outer indentation level
import doctest
doctest.testmod()
import doctest
doctest.testmod()
Loading