microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.7.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/linear_algebra/normalized_vector/Placeholder.qs

9lines · modecode

1namespace Kata {
2 open Microsoft.Quantum.Math;
3
4 function NormalizedVector() : Complex[][] {
5 // Replace the return value with correct answer.
6 return [[Complex(0., 0.)],
7 [Complex(0., 0.)]];
8 }
9}
10