module Pangram let isPangram (input: string): bool = let lowerInput = input.ToLower() ['a'..'z'] |> List.filter lowerInput.Contains = ['a'..'z']