microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fedimser/test-utils-1

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/complex_arithmetic/complex_addition/Placeholder.qs

10lines · modecode

1namespace Kata {
2 import Std.Math.*;
3
4 function ComplexAdd(x : Complex, y : Complex) : Complex {
5 // Extract real and imaginary components of the inputs.
6 let (a, b) = (x.Real, x.Imag);
7 // Implement your solution here...
8 return Complex(0., 0.);
9 }
10}
11