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/multiplication/Verification.qs

11lines · modecode

1namespace Kata.Verification {
2 function Multiplication_Reference() : Double[][] {
3 return [[19., 22.],
4 [43., 50.]];
5 }
6
7 @EntryPoint()
8 operation CheckSolution() : Bool {
9 ArraysEqualD(Kata.Multiplication(), Multiplication_Reference())
10 }
11}
12