-
Notifications
You must be signed in to change notification settings - Fork 24
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
Solution for #5 #106
base: master
Are you sure you want to change the base?
Solution for #5 #106
Conversation
// Phillip Kelley-Dotson | ||
// Arrange numbers and strings into ascending order. | ||
|
||
const solution3 = (actual) => { |
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.
you should not commit anything in yourSolution.js
}); | ||
}); | ||
// for solution3 | ||
it.only('solution2 - array should have numbers in ascending order - single', |
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.
why are you duplicating a test case that is already written in line 30?
@@ -9,4 +9,8 @@ describe('reverse word order in a sentence', () => { | |||
it('should return I', () => { | |||
expect(solution('I')).eql('I'); | |||
}); | |||
it.only('should reverse word order', () => { |
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.
what is this file doing in your MR to submit solution to #5 ?
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.
maybe this will help! https://github.com/llipio/algorithms/wiki/Git-and-branching
No description provided.