ak tiwari
ak tiwari
  • 159
  • 23 305

Відео

Leetcode weekly contest 427 | Transformed Array | Solution
Переглядів 25812 годин тому
Leetcode weekly contest 427 | Transformed Array | Solution
Leetcode Biweekly contest 145 | Minimum Operations to Make Array Values Equal to K | Solution
Переглядів 1,2 тис.14 годин тому
Leetcode Biweekly contest 145 | Minimum Operations to Make Array Values Equal to K | Solution
52 Blind 75 | Reorder List | Explanation cpp
Переглядів 14День тому
52 Blind 75 | Reorder List | Explanation cpp
Leetcode Weekly 246 | Identify the Largest Outlier in an Array | Explanation | cpp
Переглядів 29День тому
Leetcode Weekly 246 | Identify the Largest Outlier in an Array | Explanation | cpp
Leetcode weekly 426 | Smallest Number With All Set Bits | Explanation
Переглядів 23День тому
Leetcode weekly 426 | Smallest Number With All Set Bits | Explanation
Leetcode weekly contest 426 | Smallest Number With All Set Bits | Solution
Переглядів 253День тому
Leetcode weekly contest 426 | Smallest Number With All Set Bits | Solution
50 blind75 | Merge k Sorted Lists
Переглядів 421 день тому
50 blind75 | Merge k Sorted Lists
Codechef Starters 161 | One To Three | Explanation
Переглядів 11621 день тому
Codechef Starters 161 | One To Three | Explanation
Codechef Starters 161 | One To Three | Solution
Переглядів 29121 день тому
Codechef Starters 161 | One To Three | Solution
Codechef Starters 161 | Two Cards | Explanation
Переглядів 40121 день тому
Codechef Starters 161 | Two Cards | Explanation
Codechef Starters 161 | Two Cards | Solution
Переглядів 73321 день тому
Codechef Starters 161 | Two Cards | Solution
49 Blind75 | Merge Two Sorted Lists
Переглядів 821 день тому
49 Blind75 | Merge Two Sorted Lists
48 Blind75 | Linked List Cycle
Переглядів 221 день тому
48 Blind75 | Linked List Cycle
47 Blind75 | Reverse Linked List
Переглядів 1021 день тому
47 Blind75 | Reverse Linked List
Leetcode weekly contest 424 | Zero Array Transformation I | Explanation
Переглядів 28621 день тому
Leetcode weekly contest 424 | Zero Array Transformation I | Explanation
Leetcode weekly contest 424 | Zero Array Transformation I | Solution
Переглядів 54521 день тому
Leetcode weekly contest 424 | Zero Array Transformation I | Solution
46 Blind75 | Word Search
Переглядів 921 день тому
46 Blind75 | Word Search
45 Blind75 | Rotate Image
Переглядів 328 днів тому
45 Blind75 | Rotate Image
44 Blind75 | Spiral Matrix
Переглядів 328 днів тому
44 Blind75 | Spiral Matrix
43 Blind75 | Set Matrix Zeroes
Переглядів 1228 днів тому
43 Blind75 | Set Matrix Zeroes
42 Blind75 | Non-overlapping Intervals
Переглядів 328 днів тому
42 Blind75 | Non-overlapping Intervals
41 Blind75 | Merge Intervals
Переглядів 428 днів тому
41 Blind75 | Merge Intervals
40 Blind75 | Insert Interval
Переглядів 628 днів тому
40 Blind75 | Insert Interval
39 Blind75 | Longest Consecutive Sequence | Explanation
Переглядів 7Місяць тому
39 Blind75 | Longest Consecutive Sequence | Explanation
38 Blind75 | Number of Islands | Explanation with DFS
Переглядів 3Місяць тому
38 Blind75 | Number of Islands | Explanation with DFS
37 Blind 75 | Pacific Atlantic Water Flow
Переглядів 5Місяць тому
37 Blind 75 | Pacific Atlantic Water Flow
36 Blind 75 | Course Schedule | Explained with BFS & DFS
Переглядів 17Місяць тому
36 Blind 75 | Course Schedule | Explained with BFS & DFS
35 Blind 75 | Clone Graph
Переглядів 6Місяць тому
35 Blind 75 | Clone Graph
34 Blind 75 | Reverse Bits
Переглядів 7Місяць тому
34 Blind 75 | Reverse Bits

КОМЕНТАРІ

  • @EswarchandrareddyCheruvubelaga

    bro please upload hallowen array solution

  • @theshivangigupta_in
    @theshivangigupta_in 4 дні тому

    Thanks Akash, Its helpful:D

  • @sabariks8107
    @sabariks8107 5 днів тому

    code

  • @aravatanish3170
    @aravatanish3170 12 днів тому

    2nd solution please

    • @aktiwari2
      @aktiwari2 12 днів тому

      ua-cam.com/video/IUsAc58h0lI/v-deo.html

  • @shyampandey-hu7zb
    @shyampandey-hu7zb 22 дні тому

    Temporary Temperature plese make this solustion

  • @sagnikbiswas3268
    @sagnikbiswas3268 22 дні тому

    does this not take more than n^2 time

  • @sagnikbiswas3268
    @sagnikbiswas3268 22 дні тому

    did this work in time?

  • @aktiwari2
    @aktiwari2 22 дні тому

    Explanation - ua-cam.com/video/r0CKXtVofrI/v-deo.html

  • @aktiwari2
    @aktiwari2 22 дні тому

    Explanation - ua-cam.com/video/456BT4IIKIk/v-deo.html

  • @theshivangigupta_in
    @theshivangigupta_in 23 дні тому

    Great explanation

  • @shivanshgoel2504
    @shivanshgoel2504 25 днів тому

    class Solution { public: bool isZeroArray(vector<int>& nums, vector<vector<int>>& queries) { int n = queries.size(); for (int i = 0; i < n; i++) { int l = queries[i][0]; int r = queries[i][1]; for (int p = l; p <= r; p++) { if(nums[p]==0) { continue; } nums[p]--; } } for (int i = 0; i < nums.size(); i++) { if (nums[i] != 0) { return false; } } return true; } }; why showing tle in last two cases meanwhile same code this is that you write

    • @aktiwari2
      @aktiwari2 25 днів тому

      I optimised this code later in the video

  • @bd1a0573
    @bd1a0573 25 днів тому

    Encountered Such type of Problem for the First time. Thank You for The Great Explaination. I did through Brute Force O(m*n) and Encountered TLE. A small doubt, How did you come up with this solution? Like I mean did you solve similar concept problems prior?

    • @aktiwari2
      @aktiwari2 25 днів тому

      Thanks for the appreciation! intuition develops naturally when you solve a variety of problems over time

  • @shatulbansal4756
    @shatulbansal4756 25 днів тому

    Can you please explain how the diff[si] - - and diff[ei+1] + + helped here? The logic behind doing this is still unclear😅

    • @aktiwari2
      @aktiwari2 25 днів тому

      sure.... see diff[si]-- is marking the start of a query and diff[ei+1]++ is marking the end of the same query in diff after doing this for all queries we have accumulated information from all the queries in diff array

  • @AkashTiwari-r8m
    @AkashTiwari-r8m 26 днів тому

    Explanation- ua-cam.com/video/eE_-c6YnfVQ/v-deo.html

  • @kishansinghc1581
    @kishansinghc1581 26 днів тому

    Great explanation , can you suggest some sources to read more about cumulative sum?

    • @aktiwari2
      @aktiwari2 25 днів тому

      Thanks for the appreciation! Try prefix sum and suffix sum problems for better understanding

    • @kishansinghc1581
      @kishansinghc1581 23 дні тому

      @@aktiwari2any sources or articles?

  • @gokul4456
    @gokul4456 26 днів тому

    code

  • @theshivangigupta_in
    @theshivangigupta_in Місяць тому

    Helpful, Thanks for the explanation.

  • @ArunSharma-vi6yp
    @ArunSharma-vi6yp Місяць тому

    Nice Explanation

  • @sabariks8107
    @sabariks8107 Місяць тому

    code

  • @ROSHANKUMAR-wt1hf
    @ROSHANKUMAR-wt1hf Місяць тому

    wrong

  • @gogood0579
    @gogood0579 Місяць тому

    bro explaination pls

  • @theshivangigupta_in
    @theshivangigupta_in Місяць тому

    Thanks, It's helpful

  • @theshivangigupta_in
    @theshivangigupta_in Місяць тому

    Great explanation

  • @theshivangigupta_in
    @theshivangigupta_in 2 місяці тому

    It's helpful, Thanks:)

    • @aktiwari2
      @aktiwari2 2 місяці тому

      Glad it helped! :)

  • @YourCodeVerse
    @YourCodeVerse 2 місяці тому

    Tiwari ji, well explained

  • @theshivangigupta_in
    @theshivangigupta_in 2 місяці тому

    Well Explained⚡

  • @abhijitmanna4524
    @abhijitmanna4524 2 місяці тому

    4th question ans is available?

  • @AIRUSIAN1795
    @AIRUSIAN1795 2 місяці тому

    Nice and Clear Solution Understand it within 3 min THx

  • @akshitrajputhere
    @akshitrajputhere 2 місяці тому

    Thanks

  • @Abhay14
    @Abhay14 2 місяці тому

    i solve 2nd using priority queue class Solution { public: #define p pair<ll, pair<ll, ll>> #define ll long long long long minNumberOfSeconds(int mountainHeight, vector<int>& workerTimes) { ll ans=0; priority_queue<p, vector<p>, greater<p>>pq; for(auto it : workerTimes){ pq.push({it, {1, it}}); } while(!pq.empty() && mountainHeight){ p top = pq.top(); pq.pop(); // Manually extract the pair ll val = top.first; ll level = top.second.first; ll mul = top.second.second; ans = max(ans, (ll)val); pq.push({val + (level + 1) * mul, {level + 1, mul}}); mountainHeight--; } return ans; } };

  • @Abhay14
    @Abhay14 2 місяці тому

    bhai 2nd and 3rd ki explaination details me batana step wise

  • @GANTICHARAKSAIVENKAT
    @GANTICHARAKSAIVENKAT 2 місяці тому

    send me code bro

  • @saumilbisht3411
    @saumilbisht3411 2 місяці тому

    Thnx man keep uploading contest answers helps a lot! Also clear voice mei bolo bina hesitation ke impact acha aata h❤

  • @sudeep168
    @sudeep168 2 місяці тому

    what is the intuition for this particular problem

  • @shantanusoni4311
    @shantanusoni4311 2 місяці тому

    Have you solved similar problem before, I was not able to think of this solution.

    • @aktiwari2
      @aktiwari2 2 місяці тому

      yes I had seen a similar problem before

    • @jaikaransaini6122
      @jaikaransaini6122 2 місяці тому

      @aktwari2 bro can you please provide me list of questions with same pattern.

  • @Abhay14
    @Abhay14 2 місяці тому

    mai to bhai isme Dynamic programming lgga rha tha

  • @Abhay14
    @Abhay14 3 місяці тому

    bhai iss question ki maine 3-4 lagah explaination dekhi abb jaa kr samajh me aaya thanks bhaiya

  • @OnstreamGaming
    @OnstreamGaming 3 місяці тому

    thanks very easy explanation

  • @theshivangigupta_in
    @theshivangigupta_in 3 місяці тому

    First viewer🫣🙋

    • @aktiwari2
      @aktiwari2 3 місяці тому

      Thanks for being the first to watch! You're awesome! 🎉🙌

  • @TechnicalModiG
    @TechnicalModiG 3 місяці тому

    I think you not understand question , I tell you , If i am wrong correct me, In question at any point of time we reaches to alice , alice can move N steps let suppose alice wants to move R R R D D but when he travelled R R R and bob catch in this position than it is also correct. as per my understanding if he is able to catch on any step<=N Bob win and I think you are talking about after completing N steps , bob can reach or not.

    • @aktiwari2
      @aktiwari2 3 місяці тому

      yes u are correct ........I missed this point.

    • @TechnicalModiG
      @TechnicalModiG 2 місяці тому

      @@aktiwari2 no problem bro , great start keep going

    • @TechnicalModiG
      @TechnicalModiG 2 місяці тому

      @@aktiwari2 one observation from your channel , I think you don't need to add thumbnail (you can see previous videos you are getting more views without thumbnail) i don't know why , it can be one of attraction for learner , keep going keep learning

  • @sahilshrivastava6455
    @sahilshrivastava6455 3 місяці тому

    Bro if you make a full contest solution video it would be really grt help🙏

  • @theshivangigupta_in
    @theshivangigupta_in 3 місяці тому

    I really appreciate the effort you put into breaking down the information in such an understandable way.✨

    • @aktiwari2
      @aktiwari2 3 місяці тому

      So glad you liked it! 😊

  • @theshivangigupta_in
    @theshivangigupta_in 4 місяці тому

    Nice explanation ✨

    • @aktiwari2
      @aktiwari2 4 місяці тому

      Thank you! 😃

  • @adityarajsingh8399
    @adityarajsingh8399 4 місяці тому

    q3 and a4 plz brother

  • @theshivangigupta_in
    @theshivangigupta_in 4 місяці тому

    Nice explanation:))

  • @theshivangigupta_in
    @theshivangigupta_in 4 місяці тому

    It's helpful, thanks Ak👍🏻

    • @aktiwari2
      @aktiwari2 4 місяці тому

      You're welcome 😊

  • @mashapoguajay3322
    @mashapoguajay3322 4 місяці тому

    voice is not louder

  • @manoharpenta4906
    @manoharpenta4906 4 місяці тому

    bro first two are very easy. Pls make solution videos for next two...

  • @JK-de2gh
    @JK-de2gh 4 місяці тому

    good

  • @mohdibrahim-0163
    @mohdibrahim-0163 4 місяці тому

    bro kahase sikha apne please guide us

    • @King_96969
      @King_96969 4 місяці тому

      chat gpt se cheepa

    • @mohdibrahim-0163
      @mohdibrahim-0163 4 місяці тому

      ​​@@King_96969maine bhi try kiya but galat answers hi aaye