microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.3.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/complex_arithmetic/complex_modulus/Placeholder.qs

8lines · modecode

1namespace Kata {
2 open Microsoft.Quantum.Math;
3
4 function ComplexModulus(x : Complex) : Double {
5 // Implement your solution here...
6 return 0.;
7 }
8}
9