mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 21:48:11 -05:00
8 lines
132 B
Python
8 lines
132 B
Python
@export
|
|
def sort(x):
|
|
print_ln('x=%s', x.reveal())
|
|
res = x.sort()
|
|
print_ln('res=%s', x.reveal())
|
|
|
|
sort(sint.Array(1000))
|