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
First, convert the algorithm to a grid-based coordinate system.
Then, choose the number of swimmers to place semi-randomly, but weighted so that there are, on average, more fish each day of the week. Start on Monday with minimum fish, 3-10. Each day add one to that formula.
Mon: nextInt(8) + 3 (3-10)
Tues: nextInt(8) + 4
Wed: nextInt(8) + 5
Thu: nextInt(8) + 6
Fri: nextInt(8) + 7
Sat: nextInt(8) + 8
Sun: nextInt(8) + 9 (9-16)
Try that for a while. See what kind of response it gets. Maybe set it up to do that every other month or something.
The text was updated successfully, but these errors were encountered:
First, convert the algorithm to a grid-based coordinate system.
Then, choose the number of swimmers to place semi-randomly, but weighted so that there are, on average, more fish each day of the week. Start on Monday with minimum fish, 3-10. Each day add one to that formula.
Mon: nextInt(8) + 3 (3-10)
Tues: nextInt(8) + 4
Wed: nextInt(8) + 5
Thu: nextInt(8) + 6
Fri: nextInt(8) + 7
Sat: nextInt(8) + 8
Sun: nextInt(8) + 9 (9-16)
Try that for a while. See what kind of response it gets. Maybe set it up to do that every other month or something.
The text was updated successfully, but these errors were encountered: