uk
Feedback
Coding | Practice Questions Daily | C | C++ | Python | Java

Coding | Practice Questions Daily | C | C++ | Python | Java

Відкрити в Telegram

Here we are Posting daily new C, C++, Java & Kotlin questions for practice. Share: https://t.me/coding_practice_questions Be Smart and be the Geek. 🤓💻 Improve your coding skill by solving these questions. Daily 3 questions of different lvl.

Показати більше
Країна не вказанаКатегорія не вказана
5 809
Підписники
Немає даних24 години
Немає даних7 днів
Немає даних30 день
Архів дописів
• FizzBuzz The FizzBuzz challenge is a popular problem in technical interviews. For a given maximum input value n, create a function that outputs integers from 1 to n. But, if an integer is divisible by three, then the number should be replaced with the word “Fizz.” Numbers divisible by five should say “Buzz” instead. And numbers divisible by both three and five should say “FizzBuzz.” For example, with an input of 17, the output should be: [1, 2 , ”Fizz”, 4, “Buzz”, “Fizz”, 7, 8, “Fizz“, “Buzz“, 11, “Fizz”, 13, 14, “FizzBuzz”, 16, 17] Solve in Language : Kotlin or Any Join @coding_practice_questions

• Permutation Palindrome A palindrome is a word or phrase that could be spelled the same forward and backward. Examples of palindromes include the words “level” and “racecar” as well as the phrase “taco cat.” Create a function that returns TRUE if an input string is a permutation of a palindrome — that is, if the string could somehow be rearranged to make a palindrome. For example, the strings “racecar,” “carrace,” and “gghhk” should return TRUE, while words such as “tammy” and “code” should return FALSE. For an additional challenge, allow your input to include phrase strings. You’ll need to find a way to remove all spaces in the input string before running your function. Solve in Language : Kotlin or Any Let's see who can solve this first. Join @coding_practice_questions