NillionNetwork/nada-by-example

Implement Quicksort

开放

#12 创建于 2024年8月13日

 (2 条评论) (0 个反应) (0 位负责人)Python (10 个派生)auto 404
enhancementgood first issuehacktoberfesthelp wanted

仓库指标

星标
 (11 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Description

Implement a nada program that computes Quicksort on an inputted array of SecretIntgers

Use Case

This is a commonly used math function, and thus we should have an example for others to use rather than write the nada program from scratch.

Specific Requirements

The nada program should have one party, whose input is an array of SecretIntegers and output the sorted array

DIM = 10

def nada_main():
    party1 = Party(name="Party1")

    num = na.array([DIM], party1, "num", SecretInteger)

    # implement quick sort

    return na.output(output_array, party1, "sorted_array")

Protocol

贡献者指南