Questions tagged [alphabet]
319 questions
0
votes
2 answers
r - How to plot alphabets?
I want a scatter plot which looks like letters of the alphabet. How can I do this with a program? I can just enter co-ordinates and make the plot look like an 'A' or 'S' or whatever. But can it be done in an easier manner?

Rama
- 1,019
- 1
- 15
- 34
0
votes
1 answer
Splitting words and encoding to numbers
I'm currently working on a cryptography system that i build in Java. Before the crypto processing, I need to find the most efficient way to do the following:
After I get a string(f.e. 'plaintext"), i need to split it to its letters and encode them…

Galinho Salonica
- 71
- 2
- 9
0
votes
0 answers
Optimal binary search tree for English alphabet
I'm trying to understand how to use an optimal binary search tree, but I'm a bit confused. Would this be an example of such a tree?
E
A T
S N I O
M U C L …

BenW
- 737
- 10
- 41
0
votes
1 answer
How to alphabetically sort using compareTo?
Right now I'm working on an assignment and we are give a list of words to be sorted alphabetically, and we have to use the compareTo method. I need it to sort the entire list so it can then be printed. I've been struggling with this final part for…

Chase Alder
- 13
- 4
0
votes
1 answer
create array of images in swift and connect sound
I would like to create an array of images that show the alphabet and can play a sound when tapped on the image for instance I would like to show the letter A image and the user tap the letter a and it say " This is the letter A" then proceed to the…

Tommy Miles
- 23
- 7
0
votes
0 answers
How can I run this function for each element of a certain class?
Using the answer to my previous question, I have been able to successfully create an "animated letter incrementer" for any given single string. Now I'd like to make the code more dynamic and have it work on any elements that have a specific class.…

cpcdev
- 1,130
- 3
- 18
- 45
0
votes
1 answer
How can I create animated letter increments of a given word similar to the way animated number counters work?
I'm creating an "animated letter incrementer" that takes any given word and increments each letter of that word starting from A.
Example:
Word = Dog
D - Increments from A to D [A, B, C, D]
O - Increments from A to O [A, B, C, D, E, F, G, H, I, J,…

cpcdev
- 1,130
- 3
- 18
- 45
0
votes
1 answer
SQL Select n per letter of the alphabet
I'd like to make an query such as:
select * from somefield order by name
The order will ofcourse be alphabetical and i'd like for each letter of the alphabet to be showed only 5 hits. Is this possible with the query itself or should i be using php…

Mart
- 475
- 4
- 21
0
votes
2 answers
Circle Alphabet
Circle Alphabet
Enter letter A & number N , printed letters are often preceded by A N units (note: the letters arranged in a circle, so the case of the input letters is 'z' and N = 1, response project is 'a')
Input b 1 Output c
import…

Nguyen Cong Tri
- 11
- 1
- 2
0
votes
2 answers
Break down a string into an array/list bij alphabet and non-alphabet characters
I need to breakdown a string into an array or list of character sets based on the set beeing alphabet characters and non-alphabet characters.
For example:
string = -"Hello12$th'ere!@4"
the required result = [-"][Hello][12$][th]['][ere][!@4]
Does…

Dennis Betten
- 48
- 3
0
votes
2 answers
How do you compare two char arrays with each other to see if the inputted one has more than one specific variable than the other?
Okay, so I'm coding a program that will tell the user if the word they put into the command line is an isogram or not, and I'm having difficulties.
How exactly do I go about making it to where the user inputted char array is compared against the…

Wes
- 3
- 3
0
votes
1 answer
How to check if script is bicameral?
Is there a way to check if a script is bicameral, or with two sets of symbols (like upper- and lower-case) for each letter in C#? An example of a bicameral script is Roman and Greek.

Noble_Bright_Life
- 569
- 3
- 9
- 16
0
votes
2 answers
Huffman Tree Issue
We just started on Huffman tree's in class and I'm having a few issues. First given the data and frequencies...
Data % / - + *
Frequencies 5 10 25 30 50
Create a custom Huffman tree.
I created...
…

Bob
- 1,344
- 3
- 29
- 63
0
votes
1 answer
LCD Wrong Characters
i'm very young in the world of Arduino and i'm having a serious problem with the LCD QC2004A and Arduino Mega because whatever i write in alphanumeric, is translated to chinese language and i really don't know what to do to change it.
I have already…

Hermann Gomes
- 37
- 10
0
votes
0 answers
How to print (Turkish) alphabet with C# and NCLDR?
CLDR is set of XML files, that contains character sets
NCLDR is library from https://github.com/GuySmithFerrier/NCLDR
here is the expected result with 29 letters - https://en.wikipedia.org/wiki/Turkish_alphabet
How to print these characters?
there…

user1709408
- 528
- 4
- 16