Skip to content

Latest commit

 

History

History
executable file
·
47 lines (29 loc) · 724 Bytes

pangram-doc.md

File metadata and controls

executable file
·
47 lines (29 loc) · 724 Bytes

pangram

import "pangram"

Package pangram determines if a sentence is a pangram.

Index

func IsPangram(input string) bool

IsPangram returns true if the string contains all the ASCII letters (a to z).

Example

{
	fmt.Println(IsPangram("The quick brown fox jumps over the lazy dog."))
	fmt.Println(IsPangram("abc"))

}

Output

true
false

Generated by gomarkdoc