-
Notifications
You must be signed in to change notification settings - Fork 28
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
[Problem] Difference of the squares #27
Labels
Comments
ademclk
added
good first issue
Good for newcomers
challenges
good first contribution
Good for new contributors
labels
Aug 17, 2022
you mean square of the sum?... |
My bad. I updated the comment. |
is this issue available for assignment ? |
I received a solution in C++. If you have different approach to the problem or want to solve in another language you can. |
Is it okay if I solve multiple issues and open a single pull request instead of one for each issue? |
I prefer different pull requests for each problem but do whatever you want,
It doesn't matter.
…On Sat, Aug 20, 2022, 7:22 PM Legoeggolas ***@***.***> wrote:
Is it okay if I solve multiple issues and open a single pull request
instead of one for each issue?
—
Reply to this email directly, view it on GitHub
<#27 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVTBEJ3HTFYLCQSFX5EZVALV2EA5FANCNFSM562XBRBQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Difference of the squares
Sum of the squares:$1^2 + 2^2 + 3^2 + ... + 10^2 = 385$
Square of the sums:$(1 + 2 + 3 + ... + 10)^2 = 55^2 = 3025$
Difference of the squares:$3025 - 385 = 2640$
The text was updated successfully, but these errors were encountered: