-
Notifications
You must be signed in to change notification settings - Fork 153
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
Questions about HW7 #44
Comments
Hi Maxine and Fernanda (and everyone else)! I hope you're all adjusting well to the coronavirus situation. If there's anything I can do to help smooth your transitions, let me know. Questions 1+2: You should not be using the
By using the
but to sort from highest to lowest, you would call
The test cases use both of these versions. So if you don't use the Question 3: The PS: I edited your comment to update the formatting. Whenever you are referencing a piece of code, that code must be in backticks (so all the function names should be in backticks). This ensures that it is 100% unambiguous which parts of your message are code and which are not. |
Following up on the cmp question, I have the I am wondering if it is my implementation in This is my code for
and this is for
|
In line 101,102,103, I think you need to add cmp as input. This is because by default it is always using cmp_standard. For example, in line 101 try:
|
That worked! Thank you. |
Fernanda and I had a few questions about the HW:
_merged
function is simply adding the two lists, correct? Meaning we wouldn't have to usecmp_standard
.merged_sorted
function, do we have to incorporate the previous functions?merged_sorted
function, can we use while loops or should we be using recursion?Thank you :)
The text was updated successfully, but these errors were encountered: