microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
alex/pythontelem

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

katas/content/distinguishing_unitaries/h_x/Verification.qs

8lines · modecode

1namespace Kata.Verification {
2 open Microsoft.Quantum.Katas;
3
4 @EntryPoint()
5 operation CheckSolution() : Bool {
6 DistinguishUnitaries_Framework([H, X], Kata.DistinguishHfromX, ["H", "X"], 1)
7 }
8}
9