generated from CodeYourFuture/Module-Template
-
-
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 | Yorsalem Mesmer | Module-Structuring-and-Testing-Data | sprint 3 #409
Open
Jerry-yorsalem
wants to merge
13
commits into
CodeYourFuture:main
Choose a base branch
from
Jerry-yorsalem:coursework/Sprint-3
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
76a0f67
writing test, building function case by case
Jerry-yorsalem 0888ccf
identify the obtuse, straight and reflix angles
Jerry-yorsalem 07dcc04
proper fraction checking fraction proper or not.
Jerry-yorsalem 0b73d17
function extract the rank correctly, The function return an error …
Jerry-yorsalem 34ff298
completing functions of getAngleType
Jerry-yorsalem 3699c00
identify acute angle, obtuse angle, straight angle, reflex angles
Jerry-yorsalem 56ffb13
completed function from key-implement
Jerry-yorsalem d22ebdb
proper fraction test
Jerry-yorsalem a5157a9
replacing code from key-implement
Jerry-yorsalem 12ad08c
testing card value
Jerry-yorsalem 37c6506
chnge return function input, implement a function countchar
Jerry-yorsalem 8201a34
testing ordinal numbers
Jerry-yorsalem 29cfa4b
implement a function repeat
Jerry-yorsalem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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,6 +1,8 @@ | ||
function isProperFraction(numerator, denominator) { | ||
if (numerator < denominator) return true; | ||
// add your completed function from key-implement here | ||
} | ||
return Math.abs(numerator) < Math.abs(denominator); | ||
// add your completed function from key-implement her | ||
|
||
} | ||
|
||
module.exports = isProperFraction; | ||
|
||
module.exports = isProperFraction; |
28 changes: 17 additions & 11 deletions
28
Sprint-3/2-mandatory-rewrite/2-is-proper-fraction.test.js
This file contains 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,11 +1,17 @@ | ||
const isProperFraction = require("./2-is-proper-fraction"); | ||
|
||
test("should return true for a proper fraction", () => { | ||
expect(isProperFraction(2, 3)).toEqual(true); | ||
}); | ||
|
||
// Case 2: Identify Improper Fractions: | ||
|
||
// Case 3: Identify Negative Fractions: | ||
|
||
// Case 4: Identify Equal Numerator and Denominator: | ||
const isProperFraction = require("./2-is-proper-fraction.js"); | ||
test("should return true for a proper function (2/3)",() => { | ||
expect(isProperFraction(2,3)).toBe(true); | ||
}); | ||
test("should return false for an improper fraction (5/2)",() => { | ||
expect(isProperFraction(5,2)). toBe(false); | ||
}); | ||
test("should return true when numerator is zero (0/1)", () => { | ||
expect(isProperFraction(0,1)). toBe(true); | ||
}); | ||
test("should return false when numerator equals denominator (3/3)",() => { | ||
expect(isProperFraction(3,3)).toBe(false); | ||
}); | ||
test("should return true for a negativ proper fraction(-4/7)", () =>{ | ||
expect(isProperFraction(-4,7)).toBe(true); | ||
}); | ||
|
This file contains 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,5 +1,13 @@ | ||
function getCardValue(card) { | ||
//function getCardValue(card) { | ||
// replace with your code from key-implement | ||
return 11; | ||
//return 11; | ||
//} | ||
function getCardValue(card) { | ||
const rank = card.slice(0, -1); | ||
if (rank === "A") return 11; | ||
if (["J", "Q", "K", "10"].includes(rank)) return 10; | ||
if(!isNaN(rank)) return parseInt(rank); | ||
|
||
throw new Error("Invalid card rank."); | ||
} | ||
module.exports = getCardValue; |
This file contains 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,11 +1,25 @@ | ||
const getCardValue = require("./3-get-card-value"); | ||
|
||
test("should return 11 for Ace of Spades", () => { | ||
const aceofSpades = getCardValue("A♠"); | ||
expect(aceofSpades).toEqual(11); | ||
|
||
expect(getCardValue("A♠")).toBe(11); | ||
}); | ||
|
||
// Case 2: Handle Number Cards (2-10): | ||
test("should return 5 for Five of Hearts", () => { | ||
expect(getCardValue("5♥")).toBe(5); | ||
}); | ||
|
||
// Case 3: Handle Face Cards (J, Q, K): | ||
// Case 4: Handle Ace (A): | ||
test("should return 10 for King of Dimonds", () => { | ||
expect(getCardValue("K♦")). toBe(10); | ||
}) | ||
|
||
// Case 4: Handle Ace (10): | ||
test("should return 10 for Ten or Clubs",() =>{ | ||
expect(getCardValue("10♣")).toBe(10); | ||
}); | ||
// Case 5: Handle Invalid Cards: | ||
test("should throw an error for an invalid card (Z♦)", () => { | ||
expect(() => getCardValue("Z♦")).toThrow("Invalid card rank"); | ||
}); |
This file contains 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,5 +1,5 @@ | ||
function countChar(stringOfCharacters, findCharacter) { | ||
return 5 | ||
return stringOfCharacters.split(findCharacter).length - 1; | ||
} | ||
|
||
module.exports = countChar; |
This file contains 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
16 changes: 15 additions & 1 deletion
16
Sprint-3/3-mandatory-practice/implement/get-ordinal-number.js
This file contains 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,5 +1,19 @@ | ||
function getOrdinalNumber(num) { | ||
return "1st"; | ||
if(num % 100 >=11 && num% 100 <=13) { | ||
return num + "th"; | ||
} | ||
|
||
const lastDigit = num % 10; | ||
switch (lastDigit) { | ||
case 1: | ||
return num + "st"; | ||
case 2: | ||
return num + "nd"; | ||
case 3: | ||
return num + "rd"; | ||
default: | ||
return num + "th"; | ||
} | ||
} | ||
|
||
module.exports = getOrdinalNumber; |
This file contains 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
This file contains 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,5 +1,13 @@ | ||
function repeat() { | ||
return "hellohellohello"; | ||
//function repeat() { | ||
// return "hellohellohello"; | ||
//} | ||
|
||
function repeat(str, times) { | ||
if (times < 0) { | ||
throw new Error("Count cannot be negative"); | ||
} | ||
return str.repeat(times); | ||
} | ||
|
||
|
||
module.exports = repeat; |
Oops, something went wrong.
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.
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 are using recursing in javasciprt, but you have to be careful while doing that. https://www.codecademy.com/resources/blog/recursion/ I suggest you to check this article.