Skip to content

Commit

Permalink
removed unnecessary console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
denniwang committed Feb 5, 2025
1 parent 505fe56 commit 69528b5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/common/src/major2-validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,6 @@ export function getNecessaryCourses(
for (const req of requirements) {
crawlRequirement(req, tracker, requiredCourses);
}
console.log("KOBE");
console.log(requiredCourses);
return requiredCourses;
}

Expand Down Expand Up @@ -507,7 +505,6 @@ function validateRangeRequirement(
): Result<Array<Solution>, MajorValidationError> {
// get the eligible courses (Filter out exceptions)
const exceptions = new Set(r.exceptions.map(courseToString));
console.log("necessaryCourses", tracker.getNecessaryCourses());
tracker.getNecessaryCourses().forEach((course) => exceptions.add(course));

const courses = tracker
Expand Down Expand Up @@ -540,7 +537,6 @@ function validateRangeRequirement(
solutionsSoFarWithCourse.push(courseSol);
solutionsSoFar.push(...solutionsSoFarWithCourse);
}
console.log("Solutions so far", solutionsSoFar);
return Ok(solutionsSoFar);
}

Expand Down

0 comments on commit 69528b5

Please sign in to comment.