bootg.com »
United States »
Programming Challenges - How to be a breathtaking Programmer » Telegram Web
WEBCPP
+======+
Developing High-Quality websites in C++ is absolutely possible with this library
For this challenge, create a homepage that makes use of C++ computing power and upload it to a repository on github to share it!
+=====+
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
+======+
Developing High-Quality websites in C++ is absolutely possible with this library
For this challenge, create a homepage that makes use of C++ computing power and upload it to a repository on github to share it!
+=====+
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
Determination!
+=============+
Given a matrix of any size, calculate it's determinant!
+==============+
@BinaryByter for challenge ideas
+=============+
Given a matrix of any size, calculate it's determinant!
+==============+
@BinaryByter for challenge ideas
Money
+=====+
Given a list of coins, implement an algorithm to split up these coins into n heaps of coins with equal sums of coin values (Or atleast clode to equal)
+=====+
Given a list of coins, implement an algorithm to split up these coins into n heaps of coins with equal sums of coin values (Or atleast clode to equal)
👍1
Time is Colorful!
+============+
Make a visualisation of the current computer time as RGB! Find different ways to correlate time with color and display them!
+=====+
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
+============+
Make a visualisation of the current computer time as RGB! Find different ways to correlate time with color and display them!
+=====+
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
What do you think? Which JavaScript Framework shaped it most?
Anonymous Poll
26%
JQuery
2%
Lodash
16%
Angular
8%
Vue.JS
47%
React.JS
1%
Nuxt.JS
If you can do this, you can study anywhere!
+===================+
Call a JS function inside of python.
+===================+
Bring a friend!
Like what I do? Want to help your friends learn more programming? Show them this channel, they might become your new best friend 😉
+===================+
Call a JS function inside of python.
+===================+
Bring a friend!
Like what I do? Want to help your friends learn more programming? Show them this channel, they might become your new best friend 😉
Artistic Coding :D
+===========+
Difficulty: easy
time: 20 minutes
languages: any
+====================+
Write a program that randomly outputs either "*" or a "#" until the terminal is full. Share your results in the group!
Try other characters too!
+===========+
Difficulty: easy
time: 20 minutes
languages: any
+====================+
Write a program that randomly outputs either "*" or a "#" until the terminal is full. Share your results in the group!
Try other characters too!
Together, we are Strong!
+===============+
The bigger our community becomes, the better we can help eachother- it's a simoke rule of nature!
Telegram directory is a website listing multiple telegram channels. If you want to help us spread the word of our Mission, please take 30 seconds leave a like for our Channel! :)
https://tgdr.io/@prograchallenges
+===============+
The bigger our community becomes, the better we can help eachother- it's a simoke rule of nature!
Telegram directory is a website listing multiple telegram channels. If you want to help us spread the word of our Mission, please take 30 seconds leave a like for our Channel! :)
https://tgdr.io/@prograchallenges
Programming Challenges pinned «Together, we are Strong! +===============+ The bigger our community becomes, the better we can help eachother- it's a simoke rule of nature! Telegram directory is a website listing multiple telegram channels. If you want to help us spread the word of our…»
THE HUMAN COMPILER
+===================+
What is the output of this code?
+===================+
Bring a friend!
Like what I do? Want to help your friends learn more programming? Show them this channel, they might become your new best friend 😉
+===================+
function job() {
return new Promise(function(resolve, reject) {
reject();
});
}
let promise = job();
promise
.then(function() {
console.log('Success 1');
})
.then(function() {
console.log('Success 2');
})
.then(function() {
console.log('Success 3');
})
.catch(function() {
console.log('Error 1');
})
.then(function() {
console.log('Success 4');
});
What is the output of this code?
+===================+
Bring a friend!
Like what I do? Want to help your friends learn more programming? Show them this channel, they might become your new best friend 😉
Forwarded from CrazyOne
FREE BOOKS
+==========+
Download programming books for FREE, all books from 2018!
https://www.tg-me.com/progerbooks
+==========+
Download programming books for FREE, all books from 2018!
https://www.tg-me.com/progerbooks
Swap Integer Values
+====+
Languages: C, C++, C#, Java, Rust, Go, x86 ASM, x86_64 ASM
+====+
Swap the values of the two integer variables X and Y WITHOUT using a 3rd variable!
X = 10
Y = -6
Now swap them, so that X becomes -6 and Y becomes 10 WITHOUT a 3rd variable!
+=============+
Bring a friend!
Like what we do? Want to help your friends learn more programming? Show them this channel, they might become your new best friend
+====+
Languages: C, C++, C#, Java, Rust, Go, x86 ASM, x86_64 ASM
+====+
Swap the values of the two integer variables X and Y WITHOUT using a 3rd variable!
X = 10
Y = -6
Now swap them, so that X becomes -6 and Y becomes 10 WITHOUT a 3rd variable!
+=============+
Bring a friend!
Like what we do? Want to help your friends learn more programming? Show them this channel, they might become your new best friend
❤1👍1
How to start into file IO
+======+
Time: 10 minutes
Difficulty: Easy
+========+
Program a tool that empties a file completely! Of course your tool has to be fast!
+==========+
+======+
Time: 10 minutes
Difficulty: Easy
+========+
Program a tool that empties a file completely! Of course your tool has to be fast!
+==========+
👍1
Anagrams!
+========+
Time: 3 hours
Language: Any
Difficulty: medium
+=============+
Given a dictionary, and a word, find all the possible anagrams to the word.
Example:
Code:
Anagram 1 => "Coed"
...
Advanced:
Do this in the fastest possible way
+=============+
Got a challenge Idea? DM @BinaryByter!
+========+
Time: 3 hours
Language: Any
Difficulty: medium
+=============+
Given a dictionary, and a word, find all the possible anagrams to the word.
Example:
Code:
Anagram 1 => "Coed"
...
Advanced:
Do this in the fastest possible way
+=============+
Got a challenge Idea? DM @BinaryByter!
👍1
Optimize!
+======+
How would you optimize this code? Explain your train of thoughts! Discuss in the group!
+=====+
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
+======+
function tak( x, y, z) {
if (y < x)
return tak(
tak(x-1, y, z),
tak(y-1, z, x),
tak(z-1, x, y)
);
else
return z;
}
How would you optimize this code? Explain your train of thoughts! Discuss in the group!
+=====+
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
What do you think of Github CoPilot?
Anonymous Poll
32%
Imptessive!
26%
Time to get a new Job!
10%
Useless
23%
I can copy paste code too!
8%
I dont believe in AI
a MAZE ing
+========+
Maze generator: write an algorythm that procedurally generates mazes
+=====+
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
+========+
Maze generator: write an algorythm that procedurally generates mazes
+=====+
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
Can you play chess? Did it affect your coding skills? Feel free to discuss it in the chat!
Anonymous Poll
34%
No, I dont
41%
Yes, I do (I'm a beginner)
22%
Yes, I do (I'm a good player)
3%
Yes, I do (I have played OTB tournaments before)
Forwarded from Programming jobs
How are jobs going to look like in the future?
Anonymous Poll
40%
Home-Office
8%
Everything in the office
49%
Hybrid solution
3%
Other (please discuss in the chat)
Forwarded from Andrii Rebukha | Solus Group