get_second_tour method

bool get_second_tour()

Indique si l'étudiant passe au second tour (tous les choix refusés).

Implementation

bool get_second_tour (){
  for (var c in choices.values){
    if (!refused.contains(c)){
      return false;
    }
  }
  return true;
}