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 2025 LONDON| ELFREDAH KEVIN-ALERECHI| Module-Structuring-and-Testing-Data | Sprint 3 #444

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Sprint-3/1-key-implement/1-get-angle-type.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,17 @@ assertEquals(acute, "Acute angle");
// When the angle is greater than 90 degrees and less than 180 degrees,
// Then the function should return "Obtuse angle"
const obtuse = getAngleType(120);
// ====> write your test here, and then add a line to pass the test in the function above
// ====> const obtuse = getAngleType(120);
//assertEquals(obtuse, "Obtuse angle");

// Case 4: Identify Straight Angles:
// When the angle is exactly 180 degrees,
// Then the function should return "Straight angle"
// ====> write your test here, and then add a line to pass the test in the function above
// ====> const straight = getAngleType(180);
//assertEquals(straight, "Straight angle");

// Case 5: Identify Reflex Angles:
// When the angle is greater than 180 degrees and less than 360 degrees,
// Then the function should return "Reflex angle"
// ====> write your test here, and then add a line to pass the test in the function above
// ====> const straight = getAngleType(180);
//assertEquals(straight, "Straight angle");
23 changes: 21 additions & 2 deletions Sprint-3/1-key-implement/2-is-proper-fraction.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,33 @@ assertEquals(improperFraction, false);
// target output: true
// Explanation: The fraction -4/7 is a proper fraction because the absolute value of the numerator (4) is less than the denominator (7). The function should return true.
const negativeFraction = isProperFraction(-4, 7);
// ====> complete with your assertion
// ====> const equalFraction = isProperFraction(3, 3);
assertEquals(equalFraction, false);


// Equal Numerator and Denominator check:
// Input: numerator = 3, denominator = 3
// target output: false
// Explanation: The fraction 3/3 is not a proper fraction because the numerator is equal to the denominator. The function should return false.
const equalFraction = isProperFraction(3, 3);
// ====> complete with your assertion
// ====> function isProperFraction(numerator, denominator) {
if (denominator === 0) return "Undefined (denominator cannot be zero)"; // Handle division by zero
return numerator < denominator;
}

// Helper function for assertions
//function assertEquals(actualOutput, targetOutput) {
//console.assert(
// actualOutput === targetOutput,
// `Expected ${actualOutput} to equal ${targetOutput}`
// );
//}

// Test for Equal Numerator and Denominator
//const equalFraction = isProperFraction(3, 3);
//assertEquals(equalFraction, false);


// Stretch:
// What other scenarios could you test for?
//====>Test cases should include zero denominators, zero numerators, negative fractions, and improper fractions to ensure isProperFraction handles all scenarios correctly.
6 changes: 5 additions & 1 deletion Sprint-3/1-key-implement/3-get-card-value.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ assertEquals(aceofSpades, 11);
// When the function is called with such a card,
// Then it should return the numeric value corresponding to the rank (e.g., "5" should return 5).
const fiveofHearts = getCardValue("5♥");
// ====> write your test here, and then add a line to pass the test in the function above
// ====> function getCardValue(card) {
// const rank = card[0]; // Extracts the first character (rank) from the card string
// if (!isNaN(rank)) return Number(rank);
//}


// Handle Face Cards (J, Q, K):
// Given a card with a rank of "10," "J," "Q," or "K",
Expand Down
8 changes: 7 additions & 1 deletion Sprint-3/3-mandatory-practice/implement/count.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,10 @@ function countChar(stringOfCharacters, findCharacter) {
return 5
}

module.exports = countChar;
module.exports = countChar;

//=====> function countChar(stringOfCharacters, findCharacter) {
return stringOfCharacters.split(findCharacter).length - 1;
//}

//module.exports = countChar;