Skip to content

Instantly share code, notes, and snippets.

@DrunkenAlcoholic
Created May 14, 2024 03:27
Show Gist options
  • Save DrunkenAlcoholic/ac64c04bc97c623b60346fdea95dabc5 to your computer and use it in GitHub Desktop.
Save DrunkenAlcoholic/ac64c04bc97c623b60346fdea95dabc5 to your computer and use it in GitHub Desktop.
Pangram [Exercism - Nim]
import strutils
proc isPangram*(s: string): bool =
for char in 'a'..'z':
if not contains(s.toLowerAscii, char): return false
else: result = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment