Get Mystery Box with random crypto!

Competitive programming questions

Logo of telegram channel competitive_programming_question — Competitive programming questions C
Logo of telegram channel competitive_programming_question — Competitive programming questions
Categories: Technologies , Education
Language: English
Country: Not set
Subscribers: 7.16K
Description from channel

Solving competitive Programming Questions one day at a time.
Group link:
https://t.me/competitive_programming_question
Please forward it to your friends

Ratings & Reviews

2.50

2 reviews

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

5 stars

0

4 stars

0

3 stars

1

2 stars

1

1 stars

0


The latest Messages

2021-03-29 12:51:21 Paid technical writer opportunity for www.prodevelopertutorial.com website. Fill out below form if interested

https://forms.gle/3eYeHvZoFpPEFskP9
569 views09:51
Open / Comment
2021-03-03 06:38:49 Day 35 Question: Rain water trapping in C++

Given *n* non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
Input: [0,1,0,2,1,0,1,3,2,1,2,1]

Output: 6


Before solving this problem, please take a look at “Container with most water (https://www.prodevelopertutorial.com/find-the-container-with-most-water-explanation-with-diagram-and-solution-in-cpp-language/)” problem. There I have explained in detail, how two pointers work.

Solution:
https://www.prodevelopertutorial.com/rain-water-trapping-in-c/
722 views03:38
Open / Comment
2021-03-01 06:28:42 Group Anagrams when given an array of strings in C++

Example:

Input: ["eat", "tea", "tan", "ate", "nat", "bat"],

Output:
[
["ate","eat","tea"],
["nat","tan"],
["bat"]
]
This problem can be solved easily using Maps.
The solution involves 2 steps:
1. Sort the element and make it as the key.
2. Take the value and place it in the key.
Solution:
https://www.prodevelopertutorial.com/group-anagrams-in-c/
868 views03:28
Open / Comment
2021-02-24 08:05:14 Day 33 Question: Given an n x n 2D matrix rotate it by 90 degrees (clockwise) in C++ in place

You have to rotate the image in-place (https://en.wikipedia.org/wiki/In-place_algorithm), which means you have to modify the input 2D matrix directly. DO NOT allocate another 2D matrix and do the rotation.
Example 1:

Given input matrix =

[
[1,2,3],
[4,5,6],
[7,8,9]
],

rotate the input matrix in-place such that it becomes:

[
[7,4,1],
[8,5,2],
[9,6,3]
]
Solution:
https://www.prodevelopertutorial.com/given-an-n-x-n-2d-matrix-rotate-it-by-90-degrees-clockwise-in-c-in-place/

Buy the book:
https://www.instamojo.com/aj_guides/ajs-guide-to-algorithm-and-data-structure-in/
1.3K views05:05
Open / Comment
2021-02-23 09:47:56 Subscribe us in Quora: https://www.quora.com/q/dailyonecodingproblem
1.1K views06:47
Open / Comment
2021-02-23 09:41:03 Check if Two Trees are Mirror Structure to each other

Solution:

https://www.prodevelopertutorial.com/check-if-two-trees-are-mirror-structure-to-each-other/
1.2K views06:41
Open / Comment