-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Difference of Squares - Added Parameters to placeholders #585
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left comments with issue that have to be fixed
pass | ||
|
||
|
||
def difference(): | ||
def difference(square_of_sum, sum_of_squares): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
difference
takes only one parameter according to https://github.com/exercism/python/blob/master/exercises/difference-of-squares/difference_of_squares_test.py
@@ -1,10 +1,10 @@ | |||
def square_of_sum(): | |||
def square_of_sum(square_of_sum): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This conflicts with the exercise itself, it requires only number
Updated the function `difference` by deleting a conflicting parameter.
@m-a-ge are these the changes you wanted? |
@Sukhj1nder No, not really. |
Made the Parameter in the `difference` function less confusing.
@m-a-ge hopefully this is better |
@Sukhj1nder Are you still working on this? |
Sorry guys, I have gotten busier with some of my other projects. Hopefully it gets finished but, I hope to see you guys in the future when I've finished my projects so I can contribute further into this project. |
Added Parameters to the Difference of Squares file in the functions
square_of_sum
,sum_of_squares
anddifference
.This resolves the issue #585.
TODO: Difference of Squares - Ticked on #509
Resolves #555