Posts by Amador.py • 43 points
3 posts
-
0
votes3
answers649
viewsA: Binary tree removal
Just remove the desired one and take the larger one on the left or the smaller one on the right and put it in its place.
-
2
votes3
answers1281
viewsQ: Python dictionary
Next, I have a table with words in a language, I will use example to suppose, from Portuguese to English. These words are in a dictionary where the key is the Portuguese word and the value is the…
-
1
votes0
answers34
viewsQ: I need a program that figures out the number of occurrences of all the letters in a sentence
I need a program that discovers the amount of occurrences of all letters of a sentence, and that places the letter and amount occurrences of the same in a dictionary, key:value, letter…