Update assignment 2 description

This commit is contained in:
Minseong Jang
2022-09-05 17:35:12 +09:00
parent 6501c216c6
commit fe1a0cdb27

View File

@@ -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 <https://en.wikipedia.org/wiki/Pascal%27s_triangle> for computation of binomial coefficients without integer overflow.
pub(crate) fn chooses(n: u64) -> Vec<u64> {
todo!()
}