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 all 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
2 changes: 2 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 Down
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 demonstrates how to use the quantum machine library to train a sequential model on the half-moons dataset.

- **[Parallel Half Moons](./parallel-half-moons)**
This sample demonstrates how to use the quantum machine library to train a sequential model on the half-moons dataset, parallelizing over target machines.