Created
November 13, 2025 04:43
-
-
Save jack126guy/8f2f3218780c32534a5e100421e58b09 to your computer and use it in GitHub Desktop.
Program for assuring that string input contains no fifth glyph (Latin symbol amid D and F), coding of which also contains no fifth glyph
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| for l in sys.stdin: | |
| fifth_found = 0 | |
| if chr(69) in l or chr(101) in l: | |
| fifth_found = 1 | |
| if fifth_found: | |
| print("Input contains a fifth glyph!") |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Inspiration is from a post on oulipo.social, a Mastodon instantiation that forbids that char.