microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dmitryv/select-updated

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/oracles/classical_oracles/solution.qs

7lines · modecode

1namespace Kata {
2 open Microsoft.Quantum.Convert;
3
4 function IsSeven(x : Bool[]) : Bool {
5 return BoolArrayAsInt(x) == 7;
6 }
7}
8