Student id:
Course id:
Result:
3128 items
class Course { //implement this
constructor( ) {
}
toString() {
return ''
}
static fromString(s) {
return null
}
}
function readCourses() {
fetch(LINK+"Courses.txt").then(r => r.text())
//.then( Implement this )
}
function findBest() { //the best gpa in stdMap
report("Implement this");
}