microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/replace-qsharp-with-qdk-python-tests

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/linear_algebra/outer_product/Placeholder.qs

11lines · modecode

1namespace Kata {
2 import Std.Math.*;
3
4 function OuterProduct() : Complex[][] {
5 // Replace the return value with correct answer.
6 return [
7 [Complex(0., 0.), Complex(0., 0.)],
8 [Complex(0., 0.), Complex(0., 0.)]
9 ];
10 }
11}
12