-
-
Notifications
You must be signed in to change notification settings - Fork 119
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
ITP_JAN_25 | HASAN DEMIROZ | Module-Structuring-and-Testing-Data | Sprint 3 #424
base: main
Are you sure you want to change the base?
ITP_JAN_25 | HASAN DEMIROZ | Module-Structuring-and-Testing-Data | Sprint 3 #424
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.
please see the comments.
if (numerator < denominator) return true; | ||
if (Math.abs(numerator) < Math.abs(denominator)) | ||
return true; | ||
else if (Math.abs(numerator) > Math.abs(denominator)) return false; |
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.
if you use >==, that would include situation 2,3 into one, right?
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.
I have updated the code and used less line of codes. Thanks.
// ====> complete with your assertion | ||
|
||
// Stretch: | ||
// What other scenarios could you test for? | ||
const numeratorZero = isProperFraction(0, 3); |
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.
should this return true, 0/3 is fraction or not? But it's nice you come up with this corner case.
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.
The function updated and it returns false for the 0/3 is fraction or not case.
if (rank === "A") return 11; | ||
if (["J", "Q", "K", "10"].includes(rank)) return 10; |
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 happend if the input is something like "a♠" , 'j♠", should it still be accounted as the right input or not?
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.
The code has updated. Before the statement it makes it uppercase the it.
@@ -1,6 +1,9 @@ | |||
function isProperFraction(numerator, denominator) { | |||
if (numerator < denominator) return true; | |||
// add your completed function from key-implement here | |||
else if (numerator > denominator) return false; | |||
else if(numerator === denominator) return false; |
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.
is that the function you already included in the previous file? where you have the math.abs(). also considering the situation of numerator and denominator could be zero.
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.
The code has updated and combined the else if cases.
}); | ||
|
||
test("should return 'th' for greater than 3", () => { | ||
for (let number = 4; number < 20; number++) { |
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.
11th has been handled, but how about 21st, 31st?
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.
The code has updated according to edge cases and works fine now.
const char = "c"; | ||
const count = countChar(str,char); | ||
expect(count).toEqual(0); | ||
}); |
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.
there is a corner case which could potentially failed . when findchar is empty string "".
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.
It is updated and fixed.
Learners, PR Template
Self checklist
Changelist
Briefly explain your PR.
Questions
Ask any questions you have for your reviewer.