namespace Kata {
import Std.Math.*;
function ComplexDiv(x : Complex, y : Complex) : Complex {
let (a, b) = (x.Real, x.Imag);
let (c, d) = (y.Real, y.Imag);
let denominator = c * c + d * d;
let real = (a * c + b * d) / denominator;
let imag = (- a * d + b * c) / denominator;
return Complex(real, imag);
}
}microsoft/qdk
Publicmirrored from https://github.com/microsoft/qdkAvailable
katas/content/complex_arithmetic/complex_division/Solution.qs
12lines · modepreview