2257. Count Unguarded Cells in the Grid | Daily Challenge | 21 Nov 2024 | POTD

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 พ.ย. 2024

ความคิดเห็น • 8

  • @LeetCodeIO-Anuj
    @LeetCodeIO-Anuj  6 วันที่ผ่านมา

    Join Our Discord & Whatsapp Community! 🎉
    🔗 discord.gg/bbJXxFcauK
    🔗 chat.whatsapp.com/BTlYJt2pCxj1m3H4aJZOGX
    Whether you're preparing for a job interview or just passionate about coding, you'll find valuable resources, discussions, and support from like-minded individuals.
    See you there!

  • @mr.nishantawasthi4402
    @mr.nishantawasthi4402 6 วันที่ผ่านมา +1

    Osm

  • @pranavmore-cc1lr
    @pranavmore-cc1lr 6 วันที่ผ่านมา +1

    single video for this question on yt(Great Job Brother)

  • @DarkDragon-bz6qp
    @DarkDragon-bz6qp 6 วันที่ผ่านมา +1

    Bhaiya If i create a int temp[ ][ ] =new int[m][n] .The space complexity would be O(m*n) and what about time complexity..Will it be (m*n) even if I don't traverse as it is initialized with 0

    • @LeetCodeIO-Anuj
      @LeetCodeIO-Anuj  6 วันที่ผ่านมา

      Yes it will be m.n even if you dont traverse it. Because it initialises that much amount of space and put zeroes in it :)

    • @DarkDragon-bz6qp
      @DarkDragon-bz6qp 6 วันที่ผ่านมา +1

      @LeetCodeIO-Anuj Okk thanks..