Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

added readme for algorithms sudoku solver #556

Merged
merged 6 commits into from
Oct 4, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions samples/algorithms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

- **[Simple Grover](./simple-grover)**:
This sample introduces Grover's algorithm for a simple hard-coded example.
- **[Sudoku Grover](./sudoku-grover)**;
This sample uses Grover's search algorithm to solve Sudoku puzzles.
- **[Database Search](./database-search/)**:
This sample demonstrates how to use Grover's algorithm to efficiently search a database represented as a quantum register.
- **[Integer Factorization](./integer-factorization/)**:
Expand All @@ -14,3 +16,4 @@
This sample demonstrates how to build quantum oracles from reversible classical logic.
- **[Order Finding](./order-finding)**:
This sample uses a quantum algorithm to find the order of a cycle in a permutation.

msoeken marked this conversation as resolved.
Show resolved Hide resolved
7 changes: 7 additions & 0 deletions samples/machine-learning/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Machine Learning Samples

- **[Half Moons](./half-moons)**
This sample implements using the quantum machine learning library to train a sequential model on the half-moons dataset.
ycechungAI marked this conversation as resolved.
Show resolved Hide resolved

- **[Parallel Half Moons](./parallel-half-moons)**
This sample implements using the quantum machine learning library to train a sequential model on the half-moons dataset, parallelizing over target machines
ycechungAI marked this conversation as resolved.
Show resolved Hide resolved