get_second_tour method
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;
}
Indique si l'étudiant passe au second tour (tous les choix refusés).
bool get_second_tour (){
for (var c in choices.values){
if (!refused.contains(c)){
return false;
}
}
return true;
}