You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change how we distribute students across rooms in go_brr so that we can get rid of the if student_index < student_count: line. Allocate students per room so that the total number of seats we allocate equals the number of students instead of more than it. Will require doing something slightly more sophisticated than the current num_seats = math.ceil(student_count / seat_count * int(rcount))
The text was updated successfully, but these errors were encountered:
Change how we distribute students across rooms in go_brr so that we can get rid of the
if student_index < student_count:
line. Allocate students per room so that the total number of seats we allocate equals the number of students instead of more than it. Will require doing something slightly more sophisticated than the currentnum_seats = math.ceil(student_count / seat_count * int(rcount))
The text was updated successfully, but these errors were encountered: