-
Notifications
You must be signed in to change notification settings - Fork 38
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
space katem #24
base: master
Are you sure you want to change the base?
space katem #24
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.
Nice work Kate, you hit the main learning goals. Take a look at my comment for the one bug.
raise ArgumentError if num <= 0 | ||
return 1 if num == 1 |
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.
Because the method is supposed to return a string.
return 1 if num == 1 | |
return "1" if num == 1 |
# Time complexity: ? o(n) | ||
# Space Complexity: ? o(n) | ||
def newman_conway(num) |
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 works, with one bug.
# Time Complexity: ? o(n) | ||
# Space Complexity: ? o(n)? | ||
def max_sub_array(nums) |
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.
👍
No description provided.