- Notifications
You must be signed in to change notification settings - Fork111
Arrays#105
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Closed
Uh oh!
There was an error while loading.Please reload this page.
Closed
Arrays#105
Changes fromall commits
Commits
Show all changes
13 commits Select commitHold shift + click to select a range
d605c50
Add translation to 'Array' folder files
odsantos080fb45
Update 'arrays' files translation.
odsantos0da7669
Merge branch 'master' into arrays
odsantos1973b1f
Merge branch 'master' into arrays
odsantoscec6478
Merge branch 'master' into arrays
odsantos87b8ad3
Update translation.
odsantos58c50cb
Merge branch 'master' into arrays
odsantosd3e4e96
Update "Arrays" translation (1)
odsantosa16e141
Update "Arrays" translation (2)
odsantosac385c3
Update "Arrays" translation (2)
odsantosbc384e5
Update "Arrays" translation (3)
odsantosc88c15c
Update "Arrays" translation (4)
odsantosc4de384
Merge branch 'master' into arrays
odsantosFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
6 changes: 3 additions & 3 deletions1-js/05-data-types/04-array/1-item-value/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions1-js/05-data-types/04-array/1-item-value/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions1-js/05-data-types/04-array/10-maximal-subarray/_js.view/test.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
describe("getMaxSubSum", function() { | ||
it("máxima subsoma de [1, 2, 3]igual a 6", function() { | ||
assert.equal(getMaxSubSum([1, 2, 3]), 6); | ||
}); | ||
it("máxima subsoma de [-1, 2, 3, -9]igual a 5", function() { | ||
assert.equal(getMaxSubSum([-1, 2, 3, -9]), 5); | ||
}); | ||
it("máxima subsoma de [-1, 2, 3, -9, 11]igual a 11", function() { | ||
assert.equal(getMaxSubSum([-1, 2, 3, -9, 11]), 11); | ||
}); | ||
it("máxima subsoma de [-2, -1, 1, 2]igual a 3", function() { | ||
assert.equal(getMaxSubSum([-2, -1, 1, 2]), 3); | ||
}); | ||
it("máxima subsoma de [100, -9, 2, -3, 5]igual a 100", function() { | ||
assert.equal(getMaxSubSum([100, -9, 2, -3, 5]), 100); | ||
}); | ||
it("máxima subsoma de []igual a 0", function() { | ||
assert.equal(getMaxSubSum([]), 0); | ||
}); | ||
it("máxima subsoma de [-1]igual a 0", function() { | ||
assert.equal(getMaxSubSum([-1]), 0); | ||
}); | ||
it("máxima subsoma de [-1, -2]igual a 0", function() { | ||
assert.equal(getMaxSubSum([-1, -2]), 0); | ||
}); | ||
it("máxima subsoma de [2, -8, 5, -1, 2, -3, 2]igual a 6", function() { | ||
assert.equal(getMaxSubSum([2, -8, 5, -1, 2, -3, 2]), 6); | ||
}); | ||
}); |
44 changes: 22 additions & 22 deletions1-js/05-data-types/04-array/10-maximal-subarray/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions1-js/05-data-types/04-array/10-maximal-subarray/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion1-js/05-data-types/04-array/2-create-array/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
22 changes: 11 additions & 11 deletions1-js/05-data-types/04-array/2-create-array/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions1-js/05-data-types/04-array/3-call-array-this/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions1-js/05-data-types/04-array/3-call-array-this/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions1-js/05-data-types/04-array/5-array-input-sum/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions1-js/05-data-types/04-array/5-array-input-sum/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.