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

Misspell #1

Open
unins000exe opened this issue Sep 5, 2023 · 0 comments
Open

Misspell #1

unins000exe opened this issue Sep 5, 2023 · 0 comments

Comments

@unins000exe
Copy link

unins000exe commented Sep 5, 2023

Hello! There is a typo in line 44.
Instead

        for i in range(1, len(system)):
            h[i] = 1
            for j in range(0, i - 1):
                t = modInverse(system[j][1], system[i][1])
                h[i] = (t * h[i]) % system[i][1]

should be

        for i in range(1, len(system)):
            h[i] = 1
            for j in range(0, i):
                t = modInverse(system[j][1], system[i][1])
                h[i] = (t * h[i]) % system[i][1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant