diff --git a/samples/getting-started/simple-algorithms/README.md b/samples/getting-started/simple-algorithms/README.md index fe3003ac3f9b..36848d1964a0 100644 --- a/samples/getting-started/simple-algorithms/README.md +++ b/samples/getting-started/simple-algorithms/README.md @@ -9,19 +9,19 @@ description: "This sample describes three simple quantum algorithms." urlFragment: simple-quantum-algorithms --- -# Simple Quantum Algorithms Sample # +# Simple Quantum Algorithms Sample This sample describes three simple quantum algorithms: the Bernstein–Vazirani quantum algorithm to learn a parity function, the Deutsch–Jozsa quantum algorithm to distinguish constant Boolean functions from balanced ones, and the hidden shift quantum algorithm that identifies a shift pattern between so-called bent functions. -## Prerequisites ## +## Prerequisites - The Microsoft [Quantum Development Kit](https://docs.microsoft.com/quantum/install-guide/). -## Running the Sample ## +## Running the Sample This sample can be run in a number of different ways, depending on your preferred environment. -### C# in Visual Studio Code or the Command Line ### +### C# in Visual Studio Code or the Command Line At a terminal, run the following command: @@ -29,12 +29,12 @@ At a terminal, run the following command: dotnet run ``` -### C# in Visual Studio 2019 ### +### C# in Visual Studio 2019 Open the `getting-started.sln` solution in Visual Studio and set `simple-algorithms/SimpleAlgorithms.csproj` as the startup project. Press Start in Visual Studio to run the sample. -## Manifest ## +## Manifest - [SimpleAlgorithms.qs](https://github.com/microsoft/Quantum/blob/master/samples/getting-started/simple-algorithms/SimpleAlgorithms.qs): Q# code implementing quantum operations for this sample. - [Host.cs](https://github.com/microsoft/Quantum/blob/master/samples/getting-started/simple-algorithms/Host.cs): C# code to interact with and print out results of the Q# operations for this sample.