Get Mystery Box with random crypto!

Programming Challenges - How to be a breathtaking Programmer

Logo of telegram channel prograchallenges — Programming Challenges - How to be a breathtaking Programmer P
Logo of telegram channel prograchallenges — Programming Challenges - How to be a breathtaking Programmer
Channel address: @prograchallenges
Categories: Technologies
Language: English
Subscribers: 16.11K
Description from channel

I will make you the best Programmer you can be!
Group of the best friends you can have: https://t.me/joinchat/EXSmZ0dDYKpcZWcLQQH-zw
Challenge ideas: @BinaryByter
Youtube: https://www.youtube.com/channel/UCE_XffNtPkEXej9iDW4f0sw

Ratings & Reviews

4.00

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

1

4 stars

1

3 stars

1

2 stars

0

1 stars

0


The latest Messages 5

2021-12-06 22:09:30 Thicc Water!
+=========+
Implement a function that takes height and radius of a cylinder!
The output should be the weight of a column of water of those proportions.
For an additional challenge, round the result to exactly 2 decimals.
+=========+
Please answer to this message with your solution :)
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
926 viewsMAXIMILIAN, 19:09
Open / Comment
2021-12-05 14:45:46
FREE BOOKS
+==========+
Download programming books for FREE, all books from 2019!

https://t.me/progerbooks
1.4K viewsMAXIMILIAN, 11:45
Open / Comment
2021-12-02 17:46:32 I just figured out how to create an advent of code leaderboard ( You can call me some sort of genius )

Join it using this code: 1730310-696745cd
1.9K viewsMAXIMILIAN, edited  14:46
Open / Comment
2021-12-02 17:40:26 Advent of code #1
+=============+
You're minding your own business on a ship at sea when the overboard alarm goes off! You rush to see if you can help. Apparently, one of the Elves tripped and accidentally sent the sleigh keys flying into the ocean!

Before you know it, you're inside a submarine the Elves keep ready for situations like this. It's covered in Christmas lights (because of course it is), and it even has an experimental antenna that should be able to track the keys if you can boost its signal strength high enough; there's a little meter that indicates the antenna's signal strength by displaying 0-50 stars.

Your instincts tell you that in order to save Christmas, you'll need to get all fifty stars by December 25th.

Collect stars by solving puzzles. Two puzzles will be made available on each day in the Advent calendar; the second puzzle is unlocked when you complete the first. Each puzzle grants one star. Good luck!

As the submarine drops below the surface of the ocean, it automatically performs a sonar sweep of the nearby sea floor. On a small screen, the sonar sweep report (your puzzle input) appears: each line is a measurement of the sea floor depth as the sweep looks further and further away from the submarine.

For example, suppose you had the following report:

199
200
208
210
200
207
240
269
260
263

This report indicates that, scanning outward from the submarine, the sonar sweep found depths of 199, 200, 208, 210, and so on.

The first order of business is to figure out how quickly the depth increases, just so you know what you're dealing with - you never know if the keys will get carried into deeper water by an ocean current or a fish or something.

To do this, count the number of times a depth measurement increases from the previous measurement. (There is no measurement before the first measurement.) In the example above, the changes are as follows:

199 (N/A - no previous measurement)
200 (increased)
208 (increased)
210 (increased)
200 (decreased)
207 (increased)
240 (increased)
269 (increased)
260 (decreased)
263 (increased)

In this example, there are 7 measurements that are larger than the previous measurement.

How many measurements are larger than the previous measurement?
+========+
https://adventofcode.com/2021/day/1
+=========+
Please answer to this message with your solution :)
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
1.7K viewsMAXIMILIAN, 14:40
Open / Comment
2021-12-02 01:58:09 Data Structures #1
+===========+
Language: any
Time: 3hours
Difficulty: easy
+===========+
Implement a linked list and a pair of iterators for it.
+=========+
Please answer to this message with your solution :)
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
1.6K viewsMAXIMILIAN, 22:58
Open / Comment
2021-12-01 01:12:59 RETURN TO SENDER!
+===============+

A boomerang is a V-shaped sequence that is either upright or upside down. Specifically, a boomerang can be defined as: sub-array of length 3, with the first and last digits being the same and the middle digit being different.

[3, 7, 3], [1, -1, 1], [5, 6, 5]

***Create a function that returns the total number of boomerangs in an array.***

[3, 7, 3, 2, 1, 5, 1, 2, 2, -2, 2]
// 3 boomerangs in this sequence: [3, 7, 3], [1, 5, 1], [2, -2, 2]


countBoomerangs([9, 5, 9, 5, 1, 1, 1]) ➞ 2

countBoomerangs([5, 6, 6, 7, 6, 3, 9]) ➞ 1

countBoomerangs([4, 4, 4, 9, 9, 9, 9]) ➞ 0

Notes

[5, 5, 5] (triple identical digits) is NOT considered a boomerang because the middle digit is identical to the first and last.


+=========+
Please answer to this message with your solution :)
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
1.8K viewsMAXIMILIAN, 22:12
Open / Comment
2021-11-26 20:33:01 FLIPPIDIBIT
+========+
Given a string of any length, implement a function that flips the characters of the strings - reduce the amount of inbuilt functions used

+=========+
Please answer to this message with your solution :)
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
2.3K viewsMAXIMILIAN, 17:33
Open / Comment
2021-11-24 20:22:36 GCF
+=====+
The greatest common factor of a set of numbers is the largest number that all numbers can be divided by without a reminder, for example, the greatest common factor of 21, 49, and 35 is 7 because they all can be divided by 7 without a reminder.
Challenge:
Write a function that takes any number of arguments and returns the greatest common factor.
+=========+
Thank you to @ayoob2 for submitting this question -
Please answer to this message with your solution :)
Got a challenge Idea? DM it to @BinaryByter for a chance to be featured on this channel!
2.5K viewsMAXIMILIAN, edited  17:22
Open / Comment
2021-11-21 11:19:11 Langtons Ant
+=========+

Using P5.JS (or any other language), Implement a cellular automaton according to those rules:
https://en.wikipedia.org/wiki/Langton%27s_ant

+==========+
@prograchallenges

Please answer to this post with your solution! :)
2.9K viewsMAXIMILIAN, edited  08:19
Open / Comment
2021-11-18 22:12:58
How many children does a binary tree have?
Anonymous Quiz
43%
2
25%
0 or 1 or 2
23%
Any number of children
9%
0 or 1
583 voters2.9K viewsCalle Unnérus, 19:12
Open / Comment