Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Provide a concise description of the changes in this pull request (e.g., correct

### Related Issues

Mention any related issues here, using the `#issue_number` syntax.
Mention related issues here, using the `#issue_number` syntax.

### Affected Tutorials

Expand Down
4 changes: 2 additions & 2 deletions 2023/answers/MODULE_1_ANSWERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
3. $(7+15)\ \text{mod}\ 13 = (22)\ \text{mod}\ 13 = 9$
4. $(7\ \text{mod}\ 13 + 15\ \text{mod}\ 13)\ \text{mod}\ 13 = (7+2)\ \text{mod}\ 13 = 9$

Since the results of the third and fourth calculations match, they do follow a "group structure." Notice that, it doesn't matter if you apply the `mod` immediately for each number (like in Q4) or at the end (like in Q3).
Since the results of the third and fourth calculations match, they follow a "group structure." Notice that, it doesn't matter if you apply the `mod` immediately for each number (like in Q4) or at the end (like in Q3).

## Generators

Expand Down Expand Up @@ -57,4 +57,4 @@ modularCalculator('-', 10, 15, 12); // Should return: 7
modularCalculator('*', 10, 15, 12); // Should return: 6
```

These answers should align well with the content provided in the module, helping students to understand and practice the concepts of Zero-Knowledge Proofs and modular arithmetic.
These answers should align well with the content provided in the module, helping students to understand and practice the concepts of Zero-Knowledge Proofs and modular arithmetic.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ We encourage contributions to improve this content. Please follow these steps:

1. **Analyze the Content**: Review the existing materials.
2. **Report Issues**: Create an issue if you find errors or areas for improvement.
3. **Submit Pull Requests**: Submit a pull request with your changes once you are confident they will be approved.
3. **Submit Pull Requests**: Submit a pull request with your changes once you are confident it will be approved.

If an existing issue is not being worked on, feel free to address it and make a pull request.

Expand Down