-
Notifications
You must be signed in to change notification settings - Fork 8
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
Ringo - Earth #1
base: master
Are you sure you want to change the base?
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.
Perfectly well done Ringo. Great work.
// Time Complexity: O(n). The for loop iterates through each element | ||
// in the nums array one time. | ||
// Space Complexity: O(1). Regardless of the length of the nums array, | ||
// maxSubArray() only ever creates two variables to store integers. | ||
|
||
function maxSubArray(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.
👍 Nice work
// Time Complexity: O(n). The number of times the for loop runs | ||
// will increase linearly to an increase in size of num. All | ||
// operations in the for loop are O(1) so there's no nesting to worry about. | ||
// Space Complexity: O(n). newmanConway builds an array that will hold | ||
// n items where n is equal to num. | ||
|
||
function newmanConway(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.
👍
No description provided.