Sha256: 168b342c11cd77fef93ebff0318bb7462f58511da6f7c9b3f84279c3c0c6c036
Contents?: true
Size: 301 Bytes
Versions: 101
Compression:
Stored size: 301 Bytes
Contents
-module(example). -export([is_pangram/1, test_version/0]). is_pangram(Sentence) -> Lewand = "zqxjkvbpygfwmucldrhsnioate", % least common letter first, most common last lists:all(fun (A) -> lists:any(fun (L) -> A == string:to_lower(L) end, Sentence) end, Lewand). test_version() -> 1.
Version data entries
101 entries across 101 versions & 1 rubygems