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

Task completed by Abdulrahman & Zainab #4

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
11 changes: 9 additions & 2 deletions src/challenge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { Student } from "./students";
function getStudentsByCourse(students: Student[], course: string): Student[] {
// write your code here...

return []; // replace empty array with what you see is fit
return students.filter((student) => student.courses.includes(course)); // replace empty array with what you see is fit
}

/**
Expand All @@ -36,8 +36,15 @@ function getStudentsByCourse(students: Student[], course: string): Student[] {
*/
function listAllCourses(students: Student[]): string[] {
// write your code here...
const courses = new Set<string>();

return []; // replace empty array with what you see is fit
students.forEach((student) => {
student.courses.forEach((course) => {
courses.add(course);
});
});

return Array.from(courses); // replace empty array with what you see is fit
}

export { getStudentsByCourse, listAllCourses };
15 changes: 9 additions & 6 deletions src/students.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const students: Student[] = [
function getStudentName(student: Student): string {
// write your code here...

return ""; // replace empty string with what you see is fit
return student.name; // replace empty string with what you see is fit
}

/**
Expand All @@ -87,7 +87,7 @@ function getStudentName(student: Student): string {
function getCourse(student: Student, courseIndex: number): string {
// write your code here...

return ""; // replace empty string with what you see is fit
return student.courses[courseIndex]; // replace empty string with what you see is fit
}

/**
Expand All @@ -103,7 +103,7 @@ function getCourse(student: Student, courseIndex: number): string {
*/
function addCourseToStudent(student: Student, course: string): Student {
// write your code here...

student.courses.push(course);
return student;
}

Expand All @@ -117,7 +117,7 @@ function addCourseToStudent(student: Student, course: string): Student {
function countCourses(student: Student): number {
// write your code here...

return -1; // replace -1 with what you see is fit
return student.courses.length; // replace -1 with what you see is fit
}

/**
Expand All @@ -133,7 +133,10 @@ function countCourses(student: Student): number {
*/
function removeCourseFromStudent(student: Student, course: string): Student {
// write your code here...

const index = student.courses.indexOf(course);
if (index !== -1) {
student.courses.splice(index, 1);
}
return student;
}

Expand All @@ -156,7 +159,7 @@ function findStudentById(
): Student | undefined {
// write your code here...

return undefined; // replace undefined with what you see is fit
return students.find((student) => student.id === studentId); // replace undefined with what you see is fit
}

export {
Expand Down