You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
xpetit 32eddefd09
Remove template variable [[ROOT]] from subjects and fix subjects
3 years ago
..
README.md Remove template variable [[ROOT]] from subjects and fix subjects 3 years ago

README.md

pangram

Instructions

Create a function is_pangram which will determine whether or not a string is a pangram.

A pangram is a sentence which uses every letter of the alphabet at least once.

Example:

"The quick brown fox jumps over the lazy dog."

Notions

Expected functions

pub fn is_pangram(s: &str) -> bool {

}

Usage

Here is a program to test your function.

use pangram::*;

fn main() {
    println!(
        "{}",
        is_pangram("the quick brown fox jumps over the lazy dog!")
    );
    println!("{}", is_pangram("this is not a pangram!"));
}

And its output:

student@ubuntu:~/pangram/test$ cargo run
true
false
student@ubuntu:~/pangram/test$