microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
sccarda/PythonApiDocs

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/linear_algebra/tensor_product/Placeholder.qs

11lines · modecode

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