Skip to content
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

[Largest Series Product] Synchronize Addendum Example Code with Tests #3388

Merged
merged 1 commit into from Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -12,8 +12,8 @@ To raise a `ValueError` with a message, write the message as an argument to the
# span of numbers is longer than number series
raise ValueError("span must be smaller than string length")

# span of number is zero or negative
raise ValueError("span must be greater than zero")
# span of number is negative
raise ValueError("span must not be negative")

# series includes non-number input
raise ValueError("digits input must only contain digits")
Expand Down