Really good solution! Definitely want to see a discrete math course :D
@akhilchauhan9417 Жыл бұрын
Yes for Discreet Maths. Especially struggle with recurrence relation.
@VidyaBhandary Жыл бұрын
Yes would definitely appreciate a discrete math playlist. Your teaching style is simply awesome 💯
@LOVE-kf9xi Жыл бұрын
It is a must , I'd love to see the discrete math playlist!
@light_70 Жыл бұрын
That intuition when you cancel out the possibility of invalid arrangement(divide by 2) was great.
@becomingbesthackerprogramm4644 Жыл бұрын
Please get a maths course , it's a must
@pushpamudalkar6756 Жыл бұрын
Really good explanation! You made the hardest problem seem like a piece of cake
@shreyaspathak1267 Жыл бұрын
I'd love to see the discrete math videos
@СергейШиман-ь5с Жыл бұрын
Thanks for the explanation. I was struggling with this daily problem and your video was really helpful.
@becomingbesthackerprogramm4644 Жыл бұрын
Really need it , I suffer sm with maths problem 🤧
@amen652 Жыл бұрын
A discrete math refresh course would def be nice!
@aadil4236 Жыл бұрын
Yes, defenetly want Discrete Math course!!
@CS_n00b Жыл бұрын
non trivial combinatorics problems playlist would be very useful
@menasafwat7897 Жыл бұрын
you are genius man , continue you are the best 😎😎
@patelmanan96 Жыл бұрын
Yes, please make the discrete math video
@omkarjadhav6183 Жыл бұрын
Would love playlist on descrete maths
@StellasAdi18 Жыл бұрын
That was amazing solution. Thanks for the intuition.
@palashsharma26 Жыл бұрын
Yes please video on discrete math
@Platcode797 Жыл бұрын
Please make discrete maths series, Thanks for the solution
@ChadBryant_G3 Жыл бұрын
Yes to discrete math course!
@AdityaGarud-sm7lw Жыл бұрын
yes we want discrete math crash course
@MP-ny3ep Жыл бұрын
Great explanation as always!! Thank you!
@arunvijay2279 Жыл бұрын
please do separate series for discrete mathematics
@FullMetalAlgorithmist Жыл бұрын
Woah!!!! Amazing explaination.
@young7529 Жыл бұрын
definitely want to see the discrete math course
@kshitijgarg2609 Жыл бұрын
solid explanation
@IK-xk7ex Жыл бұрын
I got this problem in my today's Days Challenge
@GuruPrasadShukla Жыл бұрын
nice explaination bro support from india
@jamesabasifreke Жыл бұрын
Discrete math please thanks!
@TheMadTech Жыл бұрын
much needed discrete mathematics
@AdiPrimandaGinting Жыл бұрын
What is the intuition to reduce slots by 2 at the last line of the while loop. Is it because in each loop we already calculate the pickup and the other delivery is invalid because it can not precede its pickup?
@uptwist2260 Жыл бұрын
Thanks for the daily
@abhis1560 Жыл бұрын
Please do make maths necessary for algorithms videos please. Not just discrete mathematics
@ruibinzhang Жыл бұрын
The solution is so easy to understand, but it is difficult for to to solve using Java as I don't know when to do modulo operations.
@vijayj1997 Жыл бұрын
Need discrete math course
@krateskim4169 Жыл бұрын
Awesome
@bigboyshassen593 ай бұрын
whats up future doordashers
@devkumar9889 Жыл бұрын
It was simple 10th grade mathematics
@SANDEEPKUMAR-in6li Жыл бұрын
Can you please provide the code in JAVA
@dilipsinghdangwal7035 Жыл бұрын
class Solution { long mod = 1000000007; public int countOrders(int n) { int slots = 2*n; long ans=1; while(slots > 0){ long ops = (slots*(slots-1))/2; ops %= mod; ans = ans * ops; slots = slots-2; ans%=mod; } return (int)ans; } }