bootg.com »
United States »
Programming Challenges - How to be a breathtaking Programmer » Telegram Web
Which function name is better? (discuss in the comments)
Anonymous Poll
56%
int doSomething ()
19%
int something ()
26%
int doSomethingAndReturnSomething ()
Programming Challenges pinned «Remember this challenge? +===================+ Well... Nobody sent us the intended solution! So we figured: Why not learn together with our audience and show them how we would solve this challenge? Watch a solution of this challenge over at our YouTube…»
It is the time of the year, when we start looking back at the year. An excellent way of doing that is sharing our most proud projects of the year - which is exactly what we will help you with over on the YouTube channel in a series called "await christmas();"
https://www.youtube.com/watch?v=lXY1CCJX4ls
https://www.youtube.com/watch?v=lXY1CCJX4ls
Programming Challenges pinned «It is the time of the year, when we start looking back at the year. An excellent way of doing that is sharing our most proud projects of the year - which is exactly what we will help you with over on the YouTube channel in a series called "await christmas();"…»
Thank you a lot for your overwelming Participation, everybody!
I'd love to have a chat with you! Join the group chat, and i'd be more than pleased to chit-chat a bit more with you!
I wish you all a great new year! 😁
I'd love to have a chat with you! Join the group chat, and i'd be more than pleased to chit-chat a bit more with you!
I wish you all a great new year! 😁
Love thy CSS!
+=======+
Build a timer that counts down 10 seconds with CSS animations, avoiding to use any Javascript.
+=======+
Build a timer that counts down 10 seconds with CSS animations, avoiding to use any Javascript.
There's an array of possibilities here
+=====+
const arr = ['1', 2, '3', 4]
const arr2 = ['2', 3, '1', 4]
write a function which finds and prints out the first exactly same values in the above two arrays, they must be same in their type and value and have the same placement in the array
+=====+
const arr = ['1', 2, '3', 4]
const arr2 = ['2', 3, '1', 4]
write a function which finds and prints out the first exactly same values in the above two arrays, they must be same in their type and value and have the same placement in the array
More arrays!
+=========+
const arr = [1, 2, 3, 4, 5, 6];
const arr2 = [12, 23, 43, 54, 3];
Find the duplicate in both arrays (3). Find the most optimal solution to this problem!
+=========+
const arr = [1, 2, 3, 4, 5, 6];
const arr2 = [12, 23, 43, 54, 3];
Find the duplicate in both arrays (3). Find the most optimal solution to this problem!
Which language is more sus?
Anonymous Poll
25%
C++
33%
Python
17%
Js
4%
Assembler
7%
German
3%
Fortran
11%
Brainfuck
Programming Challenges
Which language is more sus?
Why did nobody vote Fortran? What do you think of fortran? I'm curious!
SWYgeW91IHJvdCB0aGlydGVlbiB0aGlzIHRleHQgYW5kIHJlYWQgaXQgYmFja3dhcmRzIHlvdSBoYXZlIGRlY3J5cHRlZCBpdA
==
==
Programming Challenges
SWYgeW91IHJvdCB0aGlydGVlbiB0aGlzIHRleHQgYW5kIHJlYWQgaXQgYmFja3dhcmRzIHlvdSBoYXZlIGRlY3J5cHRlZCBpdA ==
Code Friday: It's all about that base
+========+
Language: C++
Duration: 30 minutes
Difficulty: Medium
+==============+
As you may have guessed correctly, this string has been encoded with a base64 encoder!
In order to decode it, you will need a program that decodes this string.
+==+
Base 64 is a very fascinating piece of technology that is mainly used by the MIME-standard for historic reasons.
+==+
For the challenge, have fun implementing a function that decodes Base64 characters back into "readable" text. Avoid using standard-library functions as much as possible! Once you are done, please send the solution to @BinaryByter for a chance to be featured on the YouTube channel of the Programming Challenges community
+========+
Language: C++
Duration: 30 minutes
Difficulty: Medium
+==============+
As you may have guessed correctly, this string has been encoded with a base64 encoder!
In order to decode it, you will need a program that decodes this string.
+==+
Base 64 is a very fascinating piece of technology that is mainly used by the MIME-standard for historic reasons.
+==+
For the challenge, have fun implementing a function that decodes Base64 characters back into "readable" text. Avoid using standard-library functions as much as possible! Once you are done, please send the solution to @BinaryByter for a chance to be featured on the YouTube channel of the Programming Challenges community
Activity: Computer Game: Shuffled Words
+===========+
Language: Any
Time: 30 minutes
Difficulty: easy
Feel free to discuss step 1) in the chat, we'll have a fun time :)
+========+
0) Make a list of words
1) Write a function that picks a word and garbles up the letters up
The function should never pick the same word twice in a row.
2) Make the user input his guess for the full word and tell him if he found the right word
+=============+
Thank you to Prajwal for suggesting this challenge 💚. He implemented a solution here. If you have more ideas for challenges, please send it to @BinaryByter for a chance to be featured on this channel
+===========+
Language: Any
Time: 30 minutes
Difficulty: easy
Feel free to discuss step 1) in the chat, we'll have a fun time :)
+========+
0) Make a list of words
1) Write a function that picks a word and garbles up the letters up
The function should never pick the same word twice in a row.
2) Make the user input his guess for the full word and tell him if he found the right word
+=============+
Thank you to Prajwal for suggesting this challenge 💚. He implemented a solution here. If you have more ideas for challenges, please send it to @BinaryByter for a chance to be featured on this channel
Where are you from?
Anonymous Poll
21%
Africa
15%
Asia
8%
Europe
2%
America
4%
South-america
1%
Australia
41%
India
2%
Russia
1%
Germany
3%
Iran
Memorize!
+=========+
Language: JS
Difficulty: Medium
Duration: 10 Minutes
+=================+
On the server of your company, there are many users. The company website crawls each of the users data using the function
Change the above function to not reload the profiles that already were loaded
+=======+
Got a challenge Idea? Send it to @BinaryByter for a chance of being featured on this channel! 🤩
+=========+
Language: JS
Difficulty: Medium
Duration: 10 Minutes
+=================+
On the server of your company, there are many users. The company website crawls each of the users data using the function
getUser (userId) {
// Only change this part
// fetch from server
return result;
}
Sometimes, a user will click the same profile twice. It would be wasteful to load that profile again then. Change the above function to not reload the profiles that already were loaded
+=======+
Got a challenge Idea? Send it to @BinaryByter for a chance of being featured on this channel! 🤩