Skip to content
View Elapoidea's full-sized avatar

Block or report Elapoidea

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Elapoidea/README.md
fn pascal(rows: usize) -> Vec<Vec<usize>> { 
    (0..rows).map(|r| {
        (1..=rows-r).map(|n| {
            (n..=n+r-1).product::<usize>() / (1..=r).product::<usize>()
        }).collect()}).collect()}

Pinned Loading

  1. burning-ship burning-ship Public

    Rust

  2. pascal pascal Public

    Rust