es
Feedback
Competitive Programming

Competitive Programming

Ir al canal en Telegram

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

Mostrar más
El país no está especificadoLa categoría no está especificada
4 553
Suscriptores
Sin datos24 horas
Sin datos7 días
Sin datos30 días
Archivo de publicaciones
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/

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/

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/

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/

26_DE Shaw .pdf2.54 KB

25_oracle.pdf2.65 KB

23_UHG.pdf2.60 KB

22_UHG.pdf2.51 KB

21_UHG.pdf2.61 KB

20_Optum United Health Group On Campus Interview Experience.pdf2.61 KB

19_United Health Group Interview Experience FTE virtual 2020.pdf3.00 KB

18_United Health Group interview.pdf2.61 KB

17_ServiceNow Interview Experience Oncampus.pdf2.61 KB

16_UHG.pdf2.40 KB

14_Accenture Interview Experience.pdf2.66 KB

13_Accenture Interview Experience.pdf2.38 KB

12_Accenture Interview Experience.pdf2.52 KB

11_Accenture Interview Experience.pdf2.49 KB

10_Accenture Campus Placement Drive 2020.pdf2.35 KB