7 kyu
Cyrillic letters
79 of 111FranzMartyn
Description:
Cyrillic letters, used in languages like Russian and Ukrainian, have different unicode values than Latin letters. 2 of those cyrillic letters include а
and у
which, if you copy these 2, are not the same as the latin a
and y
Don't believe me?
Latin a
:


Cyrillic а
:


Task
Your task is to write a function that returns whether a given string is a Cyrillic letter in the Cyrillic Unicode Block.
The string will always be a single letter.
Hint
Here is a link to Wikipidia's list of the Cyrillic Unicode block for reference
Examples
Input: "D"
Output: false (or False in Python or your language's equivalent)
Input: "Я"
Output: true (or True in Python or your language's equivalent)
Strings
Unicode
Similar Kata:
Stats:
Created | Sep 4, 2024 |
Published | Dec 27, 2024 |
Warriors Trained | 169 |
Total Skips | 2 |
Total Code Submissions | 501 |
Total Times Completed | 111 |
Python Completions | 79 |
Groovy Completions | 8 |
Java Completions | 31 |
C# Completions | 14 |
Total Stars | 6 |
% of votes with a positive feedback rating | 84% of 37 |
Total "Very Satisfied" Votes | 26 |
Total "Somewhat Satisfied" Votes | 10 |
Total "Not Satisfied" Votes | 1 |
Total Rank Assessments | 19 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |