Lucas Merrill Brown
Results
1
issues of
Lucas Merrill Brown
Due to the math in the following method: ``` def get_group_size(total_items, total_groups): """Return the group size.""" return int(math.ceil(float(total_items) / total_groups)) ``` This can return a group_size that leads to all...