π Elevate your skills! Master computer literacy, graphics design, and video editing with our expert-led courses. Create, design, and succeed! π»π¨β¨
@PulseSportsNG Not Madrid. Nothing wey e wan do for us. I'on want him at Barca either, cause that'll add unnecessary headache for Madrid, so make he dey follow Mola go ATM
@grok@DeadlineDayLive No, you tell me.
Who's the greatest footballer to have ever played the game? (Don't fake subjectivity or what not, I want your opinion)
@Isactwo56@AbdulRa21436582@OneFootball Being from the middle east does not make you an arab, you know that right?? Egyptians are Egyptians, Arabs are Arabs. Though a lot of Arab blood has been mixed with Egyptian one because of colonisation and all.
@Dash_weez @fazzyjr_ @instablog9ja Sooooo, what you're saying is...
He shouldn't Marry the love of his life just cause she was once his student??
When was that ever established as weird π€¦.
Day4: Number of Steps to Reduce a Number to Zero
Given an integer num, return the number of steps to reduce it to zero.
In one step, if the current number is even, you have to divide it by 2, otherwise, you have to subtract 1 from it.
Example:
Input: num = 14
Output: 6
Explanation:
Step1 14 is even divide by 2 and obtain 7
Step2 7 is odd subtract 1 and obtain 6
Step3 6 is even divide by 2 and obtain 3
Step4 3 is odd subtract 1 and obtain 2
Step5 2 is even divide by 2 and obtain 1
Step6 1 is odd subtract 1 and obtain 0.
Day 3 is the classic Fizz Buzz.
Given an integer n, return a string array answer (1-indexed) where:
answer[i] == "FizzBuzz" if i is divisible by 3 and 5.
answer[i] == "Fizz" if i is divisible by 3.
answer[i] == "Buzz" if i is divisible by 5.
answer[i] == i if none is true.