pub trait CatalanNumber {
type Output;
// Required method
fn catalan_number(&self, n: usize) -> Self::Output;
}
Expand description
カタラン数
Required Associated Types§
Required Methods§
Sourcefn catalan_number(&self, n: usize) -> Self::Output
fn catalan_number(&self, n: usize) -> Self::Output
カタラン数$C_n$を計算する。