remove_choice method

void remove_choice()

Supprime ce choix comme choix accepté de l’étudiant et libère la place dans l’école.

Implementation

void remove_choice() {
  student.accepted = null;
  school.add_slots(student);
}