Q/A Section
Ask questions and get answers from the community.
<r><p>There is an array with some numbers. All numbers are equal except for one. Try to find it!</p><CODE><s>```</s><i><br></i>findUniq([ 1, 1, 1, 2, 1, 1 ]) === 2<br>findUniq([ 0, 0, 0.55, 0, 0 ]) === 0.55<i><br></i><e>```</e></CODE><p>It’s guaranteed that array contains at least 3 numbers.</p><p>The tests contain some very huge arrays, so think about performance.</p><p><img src="https://i.imgur.com/YKR3GiE.jpeg" alt="Image preview" class="markdown-image"></p></r>
by anthonyo
<r><p>Instructions: You can solve this in your favorite language:</p><p>Task: Make a function that can take any non-negative integer as an argument and return it with its digits in descending order. Essentially, rearrange the digits to create the highest possible number.</p><p><STRONG><s>**</s>Result Examples:<e>**</e></STRONG></p><CODE><s>```</s><i><br></i>Input: 42145 Output: 54421<br>Input: 145263 Output: 654321<br>Input: 123456789 Output: 987654321<i><br></i><e>```</e></CODE><p><img src="https://i.imgur.com/YKR3GiE.jpeg" alt="Image preview" class="markdown-image"></p></r>
by luhan
Hello Africoders! 🌍,Up for a quick coding challenge? Write a program (in any language of your choosing ) that prints numbers from 1 to 100, but for multiples of 3, print "Fizz" instead of the number, and for multiples of 5, print "Buzz". For numbers that are multiples of both 3 and 5, print "FizzBuzz". Share your solutions below!Let's get coding! 💻
by anthonyo
About Q/A Section
Ask questions and get answers from the community.