Please fill the Feedback form for PCD: forms.gle/7Vd1rXggGXzUfApH6
@abhayeditor43822 ай бұрын
problem c ke code ka intution is very good thank u so much .
@PankajJaiswal-ff6ze2 ай бұрын
#include using namespace std; int main() { int t; cin >> t; string s; while (t--) { cin>>s; if(s[0]=='1' && s[1]=='0') { if(s[2]-'0'>=2 ||(s[2]!='0' && (s.size()>3))) cout
@ashmit96022 ай бұрын
hey,instead of if(s[2]-'0'>=2 ||(s[2]!='0' && (s.size()>3))) couldn't we write if(s[2] >= 2) please reply if you find any error in this
@tapishmalav44572 ай бұрын
Great explanation pienotpi (CM)
@priyanshkumar172 ай бұрын
B can also be implemented using an unordered set
@bahabouali68862 ай бұрын
the sound quality could be better. Otherwise, great explanation! thank you
@mayukhsarkar31402 ай бұрын
The quality of explanation is such that he could be (should be) the first LGM of India .Why is he still doing cp he should bring 1 or 2 Fields Medals for India .
@Saurabhkumar-pp8xw2 ай бұрын
for the c problem: void solve() { ll n; cin >> n; vector arr(n); for(auto &val : arr) cin >> val; ll m; cin >> m; for(ll i = 0; i < m; i++) { string s; cin >> s; if(s.size() != arr.size()) { cout
@nookalareshwanth17852 ай бұрын
❤❤
@addyamishra23862 ай бұрын
for the third problem what i did was i created a map for array but for every string i checked that if acc to the map vector values the char at all the index should be same in the string but it gave tle why?
@abhayeditor43822 ай бұрын
don't complicate things just try to find the most simple approach as given in this video
@ashhar72842 ай бұрын
use ordered map
@GoodBoy-my8mv2 ай бұрын
Last time when I saw the video on this channel it was a different tutor and this is different why ? Whose youtube channel is this ?
@arthkulkarnihere72742 ай бұрын
Timestamps
@abhaytomar53352 ай бұрын
sorry to say , but very poor explanation for problem E