Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oblivious Update #20

Open
jimouris opened this issue Aug 14, 2024 · 2 comments
Open

Oblivious Update #20

jimouris opened this issue Aug 14, 2024 · 2 comments
Labels
enhancement New feature or request hacktoberfest help wanted Extra attention is needed

Comments

@jimouris
Copy link
Member

Request a New Nada Example

Obliviously update an element of a list if it exists.

Description

Similarly to our linear scan example that checks whether a specific value old_value is present in a list, we now want to update the value to a new_value (if it exists).

For example in a list of SecretIntegers [1, 2, 3, 4, 5], old_value = 2, and old_value = 6, the list will become [1, 6, 3, 4, 5].

@jimouris jimouris added enhancement New feature or request help wanted Extra attention is needed labels Aug 14, 2024
@arunayyarsamy
Copy link

@jimouris @oceans404 I'll take up this issue. Should i replace all the old_value to new_value present in the list.

Ex: [1, 2, 3, 4, 5, 2] old_value = 2 new_value = 6 => [1 , 6, 3, 4, 5, 6]

arunayyarsamy pushed a commit to arunayyarsamy/nada-by-example that referenced this issue Nov 24, 2024
@arunayyarsamy
Copy link

@jimouris @oceans404 Please review the above pull request for this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request hacktoberfest help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

3 participants