Function competitive_programming_rs::math::determinant::calc_determinant [−][src]
pub fn calc_determinant<T>(matrix: Vec<Vec<T>>) -> T where
T: Copy + Sub<Output = T> + Mul<Output = T> + Div<Output = T>,