[OFFICIAL] Live DSA Learning Session 2 - Contest 1 - Part 2

You should be able to see it now.

Hi , Thanks for sharing but I am not able to join the Zoom meeting invite.Is there separate link for pre-registering to Zoom Discussion.?

1 Like

Hi,

The Zoom meeting details will be shared with the registered participants 30 minutes before the session.

2 Likes

i cant see the registration button.

1 Like

Hey! Click on the ‘Going’ button just below the title of this post.

1 Like

Not able to see the ‘Going’ button. It is just appearing as a simple text.

Please helpp

First you need to login then you’ll see the button

Thanks, finally able to do it.

@techie_pals Thanks for letting this know.Hoping for the best session!

Hello, I am getting Error 500 after clicking the Going button. What should i do?

Hi,

We have closed the registrations as it had reached the maximum capacity.

ok, can you please share a link where the session is live streaming on youtube?

hello,
I Haven’t received the zoom meeting details

Hey! I had notified as ggoing and i havent recieved a zoom link. I cant even see the Going tag anymore.

hii , i have not got any zoom meeting id password

We have sent the details via Discuss message.

You can access the message sent from the top right corner by clicking on the profile icon and in the dropdown click on the message button to find the message.

Message link for those who have registered: https://discuss.codechef.com/t/re-official-live-dsa-learning-session-2-contest-1-part-2/61093

heyy can someone please tell how to join whatsapp group?? i’m not albe to join the group.

anyone please help me in this question :CodeChef: Practical coding for everyone

I am getting correct answer in sample but WA when submitted

here my solution :slight_smile:

#include <bits/stdc++.h>
#define ll long long
using namespace std;

int main(){
int t;
cin>>t;
while(t–){
string m,w;
cin>>m>>w;
sort(m.begin(),m.end());
sort(w.begin(),w.end());
bool cond = false;
if(m.length()>w.length()){
for(int i=0;i<m.length()-w.length();i++){
if(w.compare(m.substr(i,i+w.length()))){
cout<<“YES”<<endl;
cond = true;
break;
}
}
if(!cond)cout<<“NO”<<endl;
}
else if(m.length()<w.length()){
for(int i=0;i<w.length()-m.length();i++){
if(m.compare(w.substr(i,i+m.length()))){
cout<<“YES”<<endl;
cond = true;
break;
}
}
if(!cond)cout<<“NO”<<endl;
}
else{
for(int i=0;i<m.length();i++){
if(m[i]!=w[i]){
cond= true;
cout<<“NO”<<endl;
}
}
if(!cond){
cout<<“YES”<<endl;
}
}
}
return 0;
}