microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
billt/revert-mimalloc

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/oracles/classical_oracles/Solution.qs

5lines · modecode

1namespace Kata {
2 function IsSeven(x : Bool[]) : Bool {
3 return x[0] and x[1] and x[2];
4 }
5}