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

ITP_JAN_25 | HASAN DEMIROZ | Module-Structuring-and-Testing-Data | Sprint 3 #424

Open
wants to merge 15 commits into
base: main
Choose a base branch
from

Conversation

hasandemiroz
Copy link

Learners, PR Template

Self checklist

  • I have committed my files one by one, on purpose, and for a reason
  • I have titled my PR with COHORT_NAME | FIRST_NAME LAST_NAME | REPO_NAME | WEEK
  • I have tested my changes
  • My changes follow the style guide
  • My changes meet the requirements of this task

Changelist

Briefly explain your PR.

Questions

Ask any questions you have for your reviewer.

Copy link

@HappyCoder5114 HappyCoder5114 left a 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;

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?

Copy link
Author

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);

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.

Copy link
Author

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;

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?

Copy link
Author

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;

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.

Copy link
Author

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++) {

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?

Copy link
Author

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);
});

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 "".

Copy link
Author

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.

@cjyuan cjyuan changed the base branch from coursework/sprint-3 to main March 27, 2025 19:50
@cjyuan cjyuan added the Reviewed Volunteer to add when completing a review label Mar 27, 2025
@hasandemiroz hasandemiroz added the Needs Review Participant to add when requesting review label Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Needs Review Participant to add when requesting review Reviewed Volunteer to add when completing a review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants