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 天
数据加载中...
吸引订阅者
十二月 '24
十二月 '240
在0个频道中
十一月 '24
+5
在0个频道中
Get PRO
十月 '24
+5
在0个频道中
Get PRO
九月 '24
+124
在0个频道中
Get PRO
八月 '240
在0个频道中
Get PRO
七月 '240
在0个频道中
Get PRO
六月 '240
在0个频道中
Get PRO
五月 '240
在0个频道中
Get PRO
四月 '240
在0个频道中
Get PRO
三月 '24
+2
在0个频道中
Get PRO
二月 '240
在0个频道中
Get PRO
一月 '240
在0个频道中
Get PRO
十二月 '230
在0个频道中
Get PRO
十一月 '230
在0个频道中
Get PRO
十月 '23
+5 869
在0个频道中
| 日期 | 订阅者增长 | 提及 | 频道 | |
| 09 十二月 | 0 | |||
| 08 十二月 | 0 | |||
| 07 十二月 | 0 | |||
| 06 十二月 | 0 | |||
| 05 十二月 | 0 | |||
| 04 十二月 | 0 | |||
| 03 十二月 | 0 | |||
| 02 十二月 | 0 | |||
| 01 十二月 | 0 |
频道帖子
• 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
| 2 | • 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 | 0 |
