diff --git a/src/assignments/assignment02.rs b/src/assignments/assignment02.rs index 663bc60..a5fc2b9 100644 --- a/src/assignments/assignment02.rs +++ b/src/assignments/assignment02.rs @@ -39,6 +39,8 @@ pub(crate) fn gcd(lhs: u64, rhs: u64) -> u64 { } /// Returns the array of nC0, nC1, nC2, ..., nCn, where nCk = n! / (k! * (n-k)!). (We assume the absence of integer overflow.) +/// +/// Consult for computation of binomial coefficients without integer overflow. pub(crate) fn chooses(n: u64) -> Vec { todo!() }