11 lines
193 B
Python
11 lines
193 B
Python
# neptun1 neptun2
|
|
|
|
def init_bw():
|
|
return 200
|
|
|
|
def decision(new, list_entry):
|
|
# print '--', new, list_entry
|
|
# print [1,[1 for x in list_entry]]
|
|
return [1,[1 for x in list_entry]]
|
|
|