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
@luis11011 This is a POC on generating random numbers for every incremental calculation.
mylist = list(range(0,100))
import random
random.shuffle(mylist)
print(mylist)
number_of_groups=10
chunks = len(mylist)/number_of_groups
for n in range(0,number_of_groups):
print(mylist[n::number_of_groups]
Sending batch updates will help us to give near real-time feedback to the user.
The text was updated successfully, but these errors were encountered: