-
-
Notifications
You must be signed in to change notification settings - Fork 554
[Diffie Hellman] Add description that a**b means "a raised to the power of b"? #1932
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
Comments
Imo we should just change it to |
Agreed. I found the |
@Gautzilla do you want to open a PR that changes it? |
Yes, I'll do that! (I'm still learning to use git, I hope I'll do it right!) |
@Gautzilla We have some useful links on how to create PRs here: https://exercism.org/docs/building |
Thank you, I was reading all that! |
I created a PR addressing this issue. |
Hey,
I had some trouble with the Diffie Hellman exercise because of the instruction:
A = g**a mod p
Where
g**a
representsg
raised to the power ofa
.I thought it was basically a
a*b
and then struggled correcting my code. Not having a CS background, I was only used to thea^b
notation.Wouldn't it be useful to add a comment specifying that
a**b
meansa^b
or a raised to the power of b?The text was updated successfully, but these errors were encountered: