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/tensor_product/Solution.qs

10lines · modecode

1namespace Kata {
2 function TensorProduct() : Double[][] {
3 return [
4 [5., 6., 10., 12.],
5 [7., 8., 14., 16.],
6 [15., 18., 20., 24.],
7 [21., 24., 28., 32.]
8 ];
9 }
10}