Posts by Marcos C. Santos • 31 points
2 posts
-
0
votes2
answers118
viewsQ: Incorrect value in subtraction of binary numbers using strings
I made this code and it basically gets two numbers in binaries (no separation of spaces between bits), and Performa (at least in the values I tested) the subtraction correctly. I tried to prevent…
-
3
votes3
answers300
viewsA: Code for reversing sequence of non-vowels ending with zero status
You can separate this problem into two small problems: Find the "sub-list" containing the sequence of non-vowels (consonants) Invert a simply chained list. The first problem in a way is easier to…