Easy to use implementation of extended and normanl Euclidean algorithm
Program
use euc_lib; fn main() { prinln!("{:?}, euc_lib::euc_ext(135, 35)"); }
OutputEucRes { d: 5, s: -1, t: 4 }
Simple
Program
use euc_lib; fn main() { prinln!("{}, euc_lib::euc(135, 35)"); }
Output5