Maths for DSA/CP : All You Need To Know
1:07:19
Life Update: Google Job Offer
2:41
2 жыл бұрын
Пікірлер
@SpittingMyMindOut
@SpittingMyMindOut 2 күн бұрын
What's the app name in 2:54?
@zarifishmam809
@zarifishmam809 12 күн бұрын
at 24:15, can someone explain why he does the primes[i] ^= 1? what does that achieve?
@mehoneybadger999
@mehoneybadger999 12 күн бұрын
bhai, one thing is for sure, you teach very bad. but thanks, at least , that that you bring up important topics, for free!
@JohnWilliams-y3k
@JohnWilliams-y3k 15 күн бұрын
Hello. Do you have a communication channel so we can talk about a project?
@Jitender294
@Jitender294 22 күн бұрын
Bhai tuu hindi bhi bolta hai 😂😂
@Reyna-yj6vo
@Reyna-yj6vo Ай бұрын
casually explaining sieve of erathosthenous
@sarthpatidar3916
@sarthpatidar3916 Ай бұрын
I am starting with phone
@surajkumarsingh4857
@surajkumarsingh4857 Ай бұрын
❤❤
@SuryanshInstrumental
@SuryanshInstrumental Ай бұрын
Bruh, I am saying honestly that I started to learn C++ from 4th class, then till 9th I build so many 3d graphics games in Pure C++ , in 9th I learned Python and build IOT and Hacking Programs in it. in 11th class I learned Assembly language and build my own OS, BUT After this I stop to continue because of 12th studies, and literally currently I forgot those all, I can't do anything now, and I can't manage my time while doing graduation BTech in AiML
@AutoNoOne11
@AutoNoOne11 2 ай бұрын
I should sue my university for how awful they taught this concept. This is the clearest I have ever understood recursion
@adults_memehub
@adults_memehub 2 ай бұрын
this video is illegal to watch having so much quality in one video
@Gaurav-yh5xj
@Gaurav-yh5xj 2 ай бұрын
c mei greedy works, and a better solution imo
@mystic3549
@mystic3549 2 ай бұрын
the quality of people here :) feels almost illegal to hear their discussions for free _/\_ orzzzzzz
@RajuPatil-u3q
@RajuPatil-u3q 2 ай бұрын
can any one explain how 6/2 = 1/2
@HarshitKumar-j8z
@HarshitKumar-j8z 2 ай бұрын
7:41
@antor.morsalin
@antor.morsalin 2 ай бұрын
There are no shortcuts
@ayanangshudasmajumder112
@ayanangshudasmajumder112 2 ай бұрын
Whenever i initialize the dp array inside my solve() function it gives incorrect but it corrects as soon as i make it global. Any particular reason for that?
@utkarshgupta9858
@utkarshgupta9858 2 ай бұрын
it doesn't set the values to 0 if you initialize it inside the function
@Negijicoder
@Negijicoder 2 ай бұрын
2300..! And i struggle on 1500..
@Chirag-n7h
@Chirag-n7h 3 ай бұрын
D Gukesh, what are you doing here?
@himanshugupta812
@himanshugupta812 3 ай бұрын
bhaiya i am also from iit bhu yeahhh
@viharivemuri7202
@viharivemuri7202 3 ай бұрын
if b == 0 you return 1.
@utkarshgupta9858
@utkarshgupta9858 3 ай бұрын
yes correct, i made that small mistake in the video
@Josuke217
@Josuke217 2 ай бұрын
​@@utkarshgupta9858Could you continue making videos related to cp because they are extremely helpful
@user-mo6nk1xp1p
@user-mo6nk1xp1p 3 ай бұрын
This is not working now.. I can't change the default clang version compiler to gcc by the commands you have mentioned. What to do.... HELP please!!!!!! 🙏 🙏
@TilakRaj-qo6ic
@TilakRaj-qo6ic 3 ай бұрын
Can someone please tell me which software he used to create thie presentation please
@praveenseervi4944
@praveenseervi4944 3 ай бұрын
sir jatin yadav ko bhi lekr aao kabi please
@namanjain1684
@namanjain1684 3 ай бұрын
// Online C++ compiler to run C++ program online #include <bits/stdc++.h> using namespace std; #define int long long int mod = 1e9+7; int32_t main() { // Write C++ code here int n,k; cin>>n>>k; vector <int> arr(n); for(int i=0;i<n;i++) cin>>arr[i]; vector <vector<int>> dp(n+1,vector<int>(k+1,0)); for(int i=0;i<=arr[0];i++) dp[0][i] = 1; for(int i=1;i<=k;i++) dp[0][i]+=dp[0][i-1]; for(int i=0;i<n;i++) dp[i][0] = 1; for(int i=1;i<n;i++){ for(int j=1;j<=k;j++){ int r = dp[i-1][j]; int l = 0; if(j-arr[i]>0) l = dp[i-1][j-arr[i]-1]; dp[i][j] = ((r-l+mod)%mod + dp[i][j-1])%mod; } } cout<<(dp[n-1][k]-dp[n-1][k-1]+mod)%mod<<endl; return 0; } iT IS GIVING WA ON 4 TETSCASE ANYONE WHO CAN HELP ME?
@shubhamchandra9258
@shubhamchandra9258 3 ай бұрын
50 programming questions from Phone. What a legend !
@TheViral_fyp
@TheViral_fyp 4 ай бұрын
Utkarsh like 6ka
@rajeshjha6805
@rajeshjha6805 4 ай бұрын
From one competition (jee) to another, they really like this shit ig 🤡
@yomanthunder
@yomanthunder 5 ай бұрын
thanks
@mosalah151
@mosalah151 5 ай бұрын
Thank u
@amitai8204
@amitai8204 5 ай бұрын
thank you very much! very helpfull!
@AshrafAli-vm7wo
@AshrafAli-vm7wo 5 ай бұрын
Bro went and never came back 😢