fix(curriculum): Update description for Step 1 of the Luhn Algorithm Project (#54773)

Co-authored-by: Dario-DC <105294544+Dario-DC@users.noreply.github.com>
This commit is contained in:
MohamedRahimm
2024-05-21 03:25:53 -04:00
committed by GitHub
parent 4811993716
commit 941c38b443
@@ -9,11 +9,7 @@ dashedName: step-1
In this project, you will implement the Luhn Algorithm. This algorithm is a formula to validate a variety of identification numbers.
<!-- TODO: Maybe cover `if __name__ == '__main__'` -->
<!-- Might not make sense, because import is not covered yet -->
<!-- https://docs.python.org/3/reference/import.html?highlight=__name__#import-related-module-attributes -->
Start by declaring a function called `main`. Use the `pass` keyword to avoid an error.
Start by declaring a function called `main`, this will serve as the entry point of the program. Use the `pass` keyword to avoid an error.
# --hints--