Thanks a lot, Sir!! I was thinking how come this problem fall into "Easy" category!! But after watching your video, things got so clear and simplified with your explanation that I find it easy now. God bless you!! :)
@KnowledgeCenter4 жыл бұрын
Great 👍
@olaidealaka68023 жыл бұрын
I agree with you Vivek!
@Om108-213 жыл бұрын
Agree Explaination on website is not easy but problem is if you understand what is asked
@md.ualiurrahmanrahat24003 жыл бұрын
This is the best explanation for this problem. Thank you Sir. I struggled a lot to understand this problem. You made it so simple for us. Great job you're doing Sir.
@KnowledgeCenter3 жыл бұрын
Glad to hear that
@shoaibsayed92434 жыл бұрын
Bhot achai sai explane kiya sir apnai .mujhai to 2d array sai nafrat thi ,par apkai wajah sai mai 2d array ko pasand karnai lagi hu
@eliojordanlopes28834 жыл бұрын
Could you suggest effective ways to use the book cracking the coding interview?
@dhananjoydey13373 жыл бұрын
Nice explanation. Thank you, keep growing.
@KnowledgeCenter3 жыл бұрын
Thanks.
@tanvirhasanmonir16272 жыл бұрын
Thank a lot sir. Your explanation is very easy to understand.
@KnowledgeCenter2 жыл бұрын
Thanks and welcome
@olaidealaka68023 жыл бұрын
Thanks for the video Knowledge center!
@KnowledgeCenter3 жыл бұрын
Any time!
@VinayakKDevadiga Жыл бұрын
my code arr1=[] for row in range(4): for column in range(4): ans=arr[row][column]+arr[row][column+1]+arr[row][column+2]+arr[row+1][column+1]+arr[row+2][column]+arr[row+2][column+1]+arr[row+2][column+2] arr1.append(ans) return max(arr1)
@krishanudutta29433 жыл бұрын
Thank you so much for clearing the concept
@KnowledgeCenter3 жыл бұрын
Glad it was helpful!
@sureshrajuragam662 Жыл бұрын
superb explanation brother
@KnowledgeCenter Жыл бұрын
Thank you so much 🙂
@ajaswanth66074 жыл бұрын
thanks a lot sir expecting many more
@KnowledgeCenter4 жыл бұрын
Sure 👍
@tanya.srivastava4 жыл бұрын
Thank you ! I've a question, how can I improve my problem solving skills? HELP!
@KnowledgeCenter4 жыл бұрын
Practice and Understanding of fundamentals.
@keerattanwar58924 жыл бұрын
strt with doing simple projects or code programs
@vakhariyajay22242 жыл бұрын
Thank you very much. You are a genius.
@akashroy18324 жыл бұрын
your solution is good but the time complexity is the problem(time complexity here is O(n^2)
@sdani91604 жыл бұрын
So can you suggest a better algorithm
@amitgiri68953 жыл бұрын
please suggest an optimised solution with time complexity O(n).
@nipungrover801910 ай бұрын
Crystal clear, thank you sir
@anmolsingh40264 жыл бұрын
Sir I still don't get the logic behind changing that limit of loop from 6 to 3. Can you elaborate on that ? Because for every r it'll run c loop run 3 times which means 3 columns but how we are gonna proceed after that .
@its_bishal_ghosh4 жыл бұрын
Because an hourglass has 3X3 rows and columns, so for r more than 3 say 4 construction of hourglass is not possible. Similarly for column too
@sadanarathanavel63404 жыл бұрын
can we initialize int result to 0 instead of using INT_MIN
@dankyt92494 жыл бұрын
no INT_MIN is macro which means lowest value possible under type int. Initializing 0 will give wrong value as 0 is greater than negative values and we are also having negative values. So whenever we are dealing with negative numbers we should use INT_MIN instead of 0 for the similar type of comparison as given in question.
@shoaibsayed92434 жыл бұрын
@@dankyt9249 well done explanation sir
@sudhanshutiwari60593 жыл бұрын
instead of INT_MIN we can use -63, since it is the min possible value.
@arpitkumarsingh64153 жыл бұрын
@@dankyt9249 thanks you cleared my doubt also regarding this.
@amisha75913 жыл бұрын
@@dankyt9249 why do we need the lowest value possible in this question? i dont get this logic please help me out
@mohitchoudhary72342 жыл бұрын
Please continue the dsa solution🙌🏻
@omarmohamed60755 жыл бұрын
you are great 👍
@KnowledgeCenter5 жыл бұрын
Thanks.
@shraddhasonekar73994 жыл бұрын
Thank you.. ! for video..
@KnowledgeCenter4 жыл бұрын
Welcome.
@shoaibsayed92434 жыл бұрын
Well done sir
@navinchainani47214 жыл бұрын
One douth i don't understand why we declare int_min plz explain this line
@sush98894 жыл бұрын
for getting least value possible of result variable .(in case of python, you can declare a list of name result , and return max(result) to get the same output.)
@navinchainani47214 жыл бұрын
@@sush9889 thanks bro
@shalinijha55643 жыл бұрын
Thank you sir
@KnowledgeCenter3 жыл бұрын
Welcome
@wanderwaffles31133 жыл бұрын
Thax :D
@ushnakhan1983 жыл бұрын
Thank you sirrrrrrrrrrrrrr
@KnowledgeCenter3 жыл бұрын
Welcome.
@shubhamshashwat54664 жыл бұрын
We neee to shorten the code.. The sum = arr[r][c] +...... doesn't sound smart.. Although it's working so why bothering
@nischaldutt98344 жыл бұрын
thank you
@KnowledgeCenter4 жыл бұрын
You're welcome
@baxtables4 жыл бұрын
Awesome
@KnowledgeCenter4 жыл бұрын
Thanks.
@baxtables4 жыл бұрын
Please explain the use of std::max
@KnowledgeCenter4 жыл бұрын
@@baxtables std::max() is used to find maximum value of either 2 values or an initializer list. e.g., std::max(10, 20) will return 20, std::max({10, 20, 30, 40}) will return 40.
@baxtables4 жыл бұрын
@@KnowledgeCenter brother, please tell me where to learn cpp??