https://github.com/hootanht/pangram-exercism
https://github.com/hootanht/pangram-exercism
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hootanht/pangram-exercism
- Owner: hootanht
- Created: 2022-06-05T13:20:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-05T13:21:08.000Z (over 3 years ago)
- Last Synced: 2025-03-22T03:25:24.558Z (7 months ago)
- Language: C#
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pangram
Welcome to Pangram on Exercism's C# Track.
If you need help running the tests or submitting your code, check out `HELP.md`.## Instructions
Determine if a sentence is a pangram. A pangram (Greek: παν γράμμα, pan gramma,
"every letter") is a sentence using every letter of the alphabet at least once.
The best known English pangram is:
> The quick brown fox jumps over the lazy dog.The alphabet used consists of ASCII letters `a` to `z`, inclusive, and is case
insensitive. Input will not contain non-ASCII symbols.## Source
### Created by
- @robkeim
### Contributed to by
- @ErikSchierboom
- @j2jensen
- @wolf99### Based on
Wikipedia - https://en.wikipedia.org/wiki/Pangram