Minimum Obstacle Removal to Reach Corner | Leetcode 2290

Поділитися
Вставка
  • Опубліковано 15 гру 2024
  • This video explains Minimum Obstacle Removal to Reach Corner using the most optimal Dijkstra algorithm using BFS and greedy minheap data structures.
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------
    🟣 JOIN our 𝐋𝐈𝐕𝐄 𝐢𝐧𝐭𝐞𝐫𝐯𝐢𝐞𝐰 𝐭𝐫𝐚𝐢𝐧𝐢𝐧𝐠 𝐩𝐫𝐨𝐠𝐫𝐚𝐦 through whatsapp query: +91 8918633037
    🟣 𝐂𝐡𝐞𝐜𝐤𝐨𝐮𝐭 𝐚𝐥𝐥 𝐨𝐮𝐫 𝐂𝐨𝐮𝐫𝐬𝐞𝐬: techdose.co.in/
    🔵 LinkedIn: / surya-pratap-kahar
    🔴 INSTAGRAM: / techdose_official
    🟢 𝐓𝐞𝐜𝐡𝐝𝐨𝐬𝐞-𝟏𝟎𝟎 𝐬𝐡𝐞𝐞𝐭: docs.google.co...
    ---------------------------------------------------------------------------------------------------------------------------------------------------------------
    𝐂𝐎𝐃𝐄 𝐋𝐈𝐍𝐊: gist.github.co...

КОМЕНТАРІ • 22

  • @21flame72
    @21flame72 18 днів тому +2

    Thankyou sir , hard problems really hard i need to improve my self in graph and tree

  • @AcashBrands
    @AcashBrands 18 днів тому +1

    nice explanation sir

  • @sailendrachettri8521
    @sailendrachettri8521 17 днів тому

    Thank you so much sir :)

  • @patilrajesh2500
    @patilrajesh2500 17 днів тому

    Lecture successfully completed on 28/11/2024 🔥🔥

  • @KareemAshraf91
    @KareemAshraf91 18 днів тому

    Keep up the good job bro!🔥

  • @MAHALAKSHMIVEERARAJ
    @MAHALAKSHMIVEERARAJ 17 днів тому +1

    Hi Sir, After I read this problem, I guessed it is a DP problem. How to improve the ability to correctly guess the method solving problem? I solved lot more problems but when seeing new problem, I am failing to identify the correct method 😞Could you please help me with this query? Thank you so much!

    • @techdose4u
      @techdose4u  17 днів тому +1

      I guess you thought of each obstacle be taken or not taken type.
      You need to encounter more such situations to sharpen your skills :)

  • @153shrinaths5
    @153shrinaths5 17 днів тому

    Please compile all the daily videos into month wise playlist so that it will be useful for us to revise. Also please provide related youtube video links in description of each video. @techdose

    • @techdose4u
      @techdose4u  17 днів тому

      Compiling all in a sheet.
      will soon make it available as soon as the new website is launched

  • @shivnathkahar8985
    @shivnathkahar8985 18 днів тому

    Excellent video

  • @abhivardhan395
    @abhivardhan395 17 днів тому

    Bestttttt.......🤍

  • @NitishKumar-vi7sq
    @NitishKumar-vi7sq 17 днів тому

    At first, I thought of using DP+Recursion, but it won't work. Why so??

    • @techdose4u
      @techdose4u  17 днів тому

      Dijkstra is a greedy technique.
      DP can solve but will get TLE.

    • @NitishKumar-vi7sq
      @NitishKumar-vi7sq 17 днів тому

      @techdose4u got it. Thanks