Sha256: 95f77a2b51bb4c349d18397e146b713c0c831c4ab22a88e21fbaa1a6832f7e06
Contents?: true
Size: 267 Bytes
Versions: 15
Compression:
Stored size: 267 Bytes
Contents
-module(example). -export([is_pangram/1, test_version/0]). is_pangram(Sentence) -> Alpha = "abcdefghijklmnopqrstuvwxyz", Lower = string:to_lower(Sentence), lists:all(fun (A) -> lists:any(fun (L) -> A == L end, Lower) end, Alpha). test_version() -> 1.
Version data entries
15 entries across 15 versions & 1 rubygems