Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Ringo - Earth #1

wants to merge 1 commit into from

Conversation

ringolingo
Copy link

No description provided.

@ringolingo ringolingo changed the title define maxSubArray and newmanConway functions Ringo - Earth May 26, 2021
Copy link

@CheezItMan CheezItMan left a 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.

Comment on lines +2 to 7
// 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) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 Nice work

Comment on lines +2 to 8
// 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) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants