This lecture is enough to demoralise the beginner coders.
@juffler4633 жыл бұрын
I agree with you
@DissyWorld3 жыл бұрын
Point
@piyushbansal97163 жыл бұрын
So many new things, aisa to mat karo🥺
@juffler4633 жыл бұрын
@@piyushbansal9716 bro make you own efforts and learn this concept frome any other place
@sandeshkurade84293 жыл бұрын
True that
@md.ualiurrahmanrahat24003 жыл бұрын
whenever this tutor comes, he makes me feel that i got the worst brain in the world. He just code without explaining the topic. And vector was not taught before.After every 4-5 videos, there is an abrupt videos like this one in this playlist. Hope they would rework on this
@chudaprasadparajuli30723 жыл бұрын
well said bro !! That's what i think too.
@sarthakkhare46003 жыл бұрын
Same here
@spritualhandle2 жыл бұрын
Exactly
@AnishDas-ik3vw3 ай бұрын
exactly...please ee wala teacher ko hatao...pleasee
@gauravsinghrathore90003 жыл бұрын
after watching this video me like " Are Kahena Kya chahtee ho? "😂😂
@jadielkyle60773 жыл бұрын
i know Im asking the wrong place but does anyone know a method to get back into an Instagram account?? I somehow lost the account password. I would appreciate any tips you can give me!
@nandk455233 жыл бұрын
@@jadielkyle6077 in case if you lost your primary contact number or email. you can send an email to instagram service desk they can help you.! :))
@nandk455233 жыл бұрын
video se jada comment samaj mai aya!!
@signaturecomics72233 жыл бұрын
🤣🤣🤣 correct h bro
@sahillabhshetwar27393 жыл бұрын
kal subah panvel nahi nikalna hai , dhire bolo.
@jyothishkamal82553 жыл бұрын
It becomes difficult to follow up some codes when someone else teaches jn between, Not like this Sir is bad, But certain topics like vectors and the use of "bits/stdc++.h" have not been taught to us before. So if you can teach the problems including the old concepts and not including anything new...it would be great help.
@jaydeepdey61323 жыл бұрын
I Agree with you
@rahul_ji213 жыл бұрын
@@Abhishek98745 u r right
@abhirupmajumder86202 жыл бұрын
true bhai
@AshishKumar-us7rw2 жыл бұрын
agreed with u
@faizalrahman60272 жыл бұрын
@@Abhishek98745 for mac users, you have to copy the bits file from github to your machine. As sometimes with clang this header file is not included. cheers
@chiragjani41643 жыл бұрын
Bhaiye we don't even know syntax of vector, please upload that🙏
Yeh ek dum jindagi badal gyi , jajbaat badal diye ,time badal diya 😂😂
@retro_14669 ай бұрын
😂
@Nishant-mj3ir2 жыл бұрын
the way they are taking the syllabus is like for an person who has studied all the topics at least one time it can never be for beginners. The video is good enough to demoralize the beginner coders.
@sedulous43462 жыл бұрын
True!!
@ankitgupta16443 жыл бұрын
vector has not been taught yet !! and we are working on it , so kindly help us with a vector lecture.🙏
@mithileshpandit1071 Жыл бұрын
You cannot depend on a single person to teach you everything you have to keep exploring onm your own around
@Shobhitchoudhary3212 жыл бұрын
In the 2nd code pay attention that the vector is taken as a copy rather than using & references as input(vector a) in function due to which 2nd swap is not necessary
@meme_eternity2 жыл бұрын
Thanks
@signaturecomics72233 жыл бұрын
Didi is best actually 😊😊 we learn things easily if she teaches
@AbdulRahman-tj3wc2 жыл бұрын
🌚🌚
@ABCDEFGH-fz5ju Жыл бұрын
Yes right 👍
@rutvikrana5123 жыл бұрын
Let Me Clear Some Doubts :- 1. Why we need to swap i when i==idex? -> we need that combination for at least one time. So It Doesnt Matter You swap or not for first time. but if you skip recursion at first time u will end up missing permutations. So We need to start from i = idx. 2. Why We need to sort when using in-built method? -> next_permutation function finds out first index where a[i] Notice that here vector a passed as value and not by address, so it doesnt matter now that you swap it back or not, because it is not used in any other recursion function. Try to remove second swap with change &a to a from permute function from first code and see result still same. HAPPY LEARNING :)
@adityaagarwal23243 жыл бұрын
Good
@sunnyrawat9313 жыл бұрын
i had a doubt how can i contact you i made a graph of above code but i didnt get same result can you help me to find my error bhut dino se solve krra hu smj ni ara
@CEOplays2 жыл бұрын
thank you
@edgyboi692 жыл бұрын
regarding the 3rd doubt, if we pass the vector by address and add the second swap like we did in the first code, why isnt that working? pls help
@omprakash4-yearb.tech.elec6702 жыл бұрын
@@edgyboi69 same issue
@sunnyrawat9313 жыл бұрын
Permutation without using vectors : /* logic : fix one element at first positon and find permutation of others (by recusively fixing others too one by one then printing array) remember to roll back chages too for next recursion ie again swapping at last we do roll back changes as we provide above logic for our original array only */ #include using namespace std; void permute(int arr[],int index,int n) { if( index == n-1) { for(int i=0;i
@ashutoshsahu55672 жыл бұрын
good
@AnkitMishra-fi6jj2 жыл бұрын
Bro in 2nd question (avoid duplicate permutations ) , why there isn't any backtrack condition (swap after recursion call) to rollback changes?
@sunnyrawat9312 жыл бұрын
@@AnkitMishra-fi6jj we have taken new array for each call
@ishitavashisht63903 жыл бұрын
i feel so confused.. they directly jump to coding part without explaining the algo properly . a stack floe diagram or flow chart is well appreciated for understanding these type of problems
@pragatigupta11592 жыл бұрын
I am also agree with your point
@sameeppaudel69252 жыл бұрын
first question alternative to vector #include using namespace std; void Perms(int arr[], int n,int idx){ if(idx==n-1){ for(int i=0;i
@pratyayamrit73363 жыл бұрын
for those people who dont understand the vector part yet and still want to attempt this problem, heres a hint, think of the array as an string and print out all the permutations using the previous method taught earlier.... heres the code for this: #include using namespace std; void permute(string s,string s1) { if(s.size()==0) { for(int i=0;i
@prashantshukla68703 жыл бұрын
Actually you are showing the that thought in prvs lecutre i.e in recursion problem just with a new function name lol 😂
@pryansh_ Жыл бұрын
animation ✔ BGM ✔ graphics ✔ unnecessary beats ✔asmr level mic quality ✔ Explanation ❌ rather Copy paste code ✔
@sunnyrawat9313 жыл бұрын
i think tthat his tutor feels that everyone know the logic by explaining 2 lines without any dry run or explaining code or how recursion works .... it is same feeling as when someone ask you to copy your answer in exam without understading properly what are you writing .. i feel that it should be improved..
@Nikhilkumar-ot6fc3 жыл бұрын
Thats the difference between a teacher and a microsoft phodne wala banda; I really appreciate the efforts made in providing free lectures but i dont think it is of much use if he just gives the solution without explaining
@AbhinavKumar-ri8zi2 жыл бұрын
jaisa free m mil rha h na ...usme khush raho ...
@Nikhilkumar-ot6fc2 жыл бұрын
@@AbhinavKumar-ri8zi thenks aaj se khush rhunga
@sumitgoyal3859 ай бұрын
😆@@Nikhilkumar-ot6fc
@Mandeepsingh-jo5cf3 жыл бұрын
On time stamp: 14:10 line number 14 :- we have to backtrack the swap operation ( swap (a,ans,idx); )
@bhoopendrasingh264010 ай бұрын
and he did not backtrack that still got the right answer ? why so ? any idea
@JayeshDurge4 ай бұрын
@@bhoopendrasingh2640their is no need to do backtrack He just simple skips when two are same and their are at same index ,otherwise go in the loop
@hargunanikhushi48283 ай бұрын
NOTES are a must, especially for this lecture as it was not explained in detail, we can analyse the code to gain insights! pls make notes available as soon as possible
@ritiksharma12292 жыл бұрын
if you don't know vectors then look at this function:- void permute(int arr[], int n,int idx){ if(idx==n-1){ for(int j=0;j
@vikassharma-th7kn Жыл бұрын
I know as beginner it is difficult to digest new thing but being frank you will never move from beginner to next level if you say it is not explained. This guy taught well only.
@mehedishuvo6257 Жыл бұрын
Your explanation is very much complex.
@fanningclub68213 жыл бұрын
Wow on trending Not on utube but on our ❤️ heart
@II_xD_II3 жыл бұрын
they had us in the first half ngl
@fanningclub68213 жыл бұрын
@@II_xD_II means
@eductionalnewswala42413 жыл бұрын
Friends I have created android app where you can get Free textbooks and preparation books like UPSC CSE, NEET-UG, IIT-JEE, IIT-JAM, GATE, NEET-PG. GO AND GRAB OPTION Link is play.google.com/store/apps/details?id=com.narenderravulakollu.library
@pijushbasak42733 жыл бұрын
After attending this lecture,I be like: Kaya itne din se thik se follow nehi kiya lectures?
@PiyushKumar-u2r3 ай бұрын
THIRD CLASS TEACHING!!! I've watched vectors and pairs still most of the things bounced over my head, this guy is neither explaining the intricacies of the code nor the idea behind properly
@SAIVARUNWelcometomylife3 жыл бұрын
Little Simple version of permutations with duplicate numbers #include "bits/stdc++.h" #include using namespace std; vector ans; void permute(vector arr,int idx){ if(idx==arr.size()){ ans.push_back(arr); return; } for(int i=idx;i>n; vector arr(n); for(auto &i:arr) cin>>i; permute(arr,0); for(auto v:ans){ for(auto i:v) cout
@softwarehacks66043 жыл бұрын
Please explain me this logic If(I!=idx and arr[I]==arr [idx]
@saumitrapandey31235 ай бұрын
But then output is like (122) (212) (221) (122)... why this (122) coming again at the end
@sandeshkurade84293 жыл бұрын
If it's possible please explain all the new things if you are going to use them. Because we didn't encountered them in previous lectures.
@anujeetkunturkar7803 жыл бұрын
Sab samaj me aa gaya bhai, sach me !!!
@devbatra33653 жыл бұрын
Those who are following this series from the start, have we been taught vectors?
@AbhishekJain-gs5tz3 жыл бұрын
yes i was also thinking about that ,we haven't been taught that topic.
@devbatra33653 жыл бұрын
@@AbhishekJain-gs5tz yup😶
@arshiparveen17283 жыл бұрын
Yaa exactly I also thinking the same
@kasireddy84513 жыл бұрын
@@AbhishekJain-gs5tz yeah
@therealhustlerSG3 жыл бұрын
@Vishal Kumar yaa but maine Greek mei padha phir dubara yaha aayi ..... apun ko nhi aaya yaar
@adityakeshari22953 жыл бұрын
you have not explained vectors yet
@KDrama_Hindi-w7t2 жыл бұрын
This video only helps in reminding that do while loop also exist.
@dhairyashah58863 жыл бұрын
got a lot of confidence by reading the cmmts ..now ik that i m not the only one haha
@ankushsaini20683 жыл бұрын
Me too😂
@grifith21963 жыл бұрын
I thought if you have animations, you will do an exhaustive dry run, right now it's as good as a screenshot of the code on the screen
@avronilbanerjee53022 жыл бұрын
right
@AbhishekSharma-lg9nb3 жыл бұрын
here is the simplest,but little lengthy solution of the first part: using namespace std; int ans[100][100]; int k=0; int fact(int f) { int a=1; for (int i=1;iarr[i]; } permute(arr,0,n); int f=fact(n); for(int i=0;i
@manishverma61352 жыл бұрын
Here a somewhat shorter one #include #include using namespace std; void permute(string c, string s, int n) { if (n == 0) { cout str; permute(c, str, str.size()); return 0; }
@sahilbadkul71302 жыл бұрын
That's that help me alot. I my getting so much confused while permutations but after this it's become so easy thanx
@OmSingh-ku5ms2 жыл бұрын
''' try this ''' def permu(ip,op): if(len(op)==0): print(ip) return for i in range(len(op)): permu(ip+op[i],op[0:i]+op[i+1:]) ip='' op='123' permu(ip,op)
@anudeep01293 жыл бұрын
plz, explain it thoroughly!
@toshupandey9432 ай бұрын
watching the logic of the question on geeksfor geeks is helpful
moral patal mai pucha diya bhaiya.....thoda basic sari coding ek hi bare mai karane thi aapko
@gauravpathak5603 жыл бұрын
jhakas video bhai 100% matlab maza a gya
@shreyankshrestha92743 жыл бұрын
Vector is explained in next videos . Dont get shocked like me 😂
@satyabratakoley34353 жыл бұрын
Why in the last question we did not swap a[¡] and a[idj] after calling helper function?
@simplegamer27113 жыл бұрын
Wah bhaiya bhaiya aap to heavy driver nikle
@anuragpandey33413 жыл бұрын
Explanation is good but not much beginner friendly.......I would recommend every absolute beginners to solve 80-100 easy problems on leetcode and then come back to this course........Telling from personal experience.
@jiosim13773 жыл бұрын
80 to 100 questions on which topic?
@anuragpandey33413 жыл бұрын
@@jiosim1377 Easy problems on leetcode are generally based on array or strings.....so you can pick any problem and start working on it from the easy section
@sunnyrawat9313 жыл бұрын
how can i contact you i still had a doubt in second code i dry run the code and didnt get result as expected
@fanushaneef39263 жыл бұрын
I could not understand the concept of vector bhaiya..itna short to phle ke lecture me bhi nahi dekha hai.dimag hil gya.
@piyush88352 жыл бұрын
the code is not working fine for the case [1,2,2]
@ahmadhamzakhan89033 жыл бұрын
Before watching this video, go and see the lecture #19 (Vectors and Pair) first, then you will easily understand the video.....
@iamdj85403 жыл бұрын
bro we not learned anything about vectors after watching the video i be like - bhai ye ho kya rha h
@umarfarooqmulla57582 жыл бұрын
That initial program using built-in functions works even with duplicates
@AbhishekSharma-lg9nb3 жыл бұрын
the comment section of this video seems more logical than the entire video
@sanskarkhare15993 жыл бұрын
nice tutorial
@mishkathossain29842 жыл бұрын
THis guy is a beast
@vijaynats Жыл бұрын
C++ is not a beginner friendly language. You could do this with plain JS running on Node or TypeScript running on Deno or just plain old C language. To generate permutations, you don't need to use vectors or templates.
@saimadhumita21443 жыл бұрын
Notes for lecture string 13 and 16.3 are not available. Attach them @apna college
@artirani38063 жыл бұрын
It is available for this lecture click on show more
@saimadhumita21443 жыл бұрын
@@artirani3806 Yeah now its available
@anikdakua3 жыл бұрын
Still no 16.3 note available there . If you got that share that google drive link .
@artirani38063 жыл бұрын
@@anikdakua No yrr it is not there may be main confuse hogi uss time, sorry latest video pe daala h comment. Bhaiya upload kar dein shyd baad mein
@eductionalnewswala42413 жыл бұрын
Friends I have created android app where you can get Free textbooks and preparation books like UPSC CSE, NEET-UG, IIT-JEE, IIT-JAM, GATE, NEET-PG. GO AND GRAB OPTION Link is play.google.com/store/apps/details?id=com.narenderravulakollu.library
@devansh37803 жыл бұрын
//it can make things easy #include #include #include #include using namespace std; int main() { string s; couts; vector ans; sort(s.begin() , s.end()); do { ans.push_back(s); }while(next_permutation(s.begin() , s.end())); cout
@mohakgidwani15053 жыл бұрын
The last code (where elements are repeated) is complete wrong.
@avronilbanerjee53022 жыл бұрын
I was searching for this comment, You are right
@alltechpoint85083 жыл бұрын
Apna college op⚡⚡ Like if agree
@eductionalnewswala42413 жыл бұрын
Friends I have created android app where you can get Free textbooks and preparation books like UPSC CSE, NEET-UG, IIT-JEE, IIT-JAM, GATE, NEET-PG. GO AND GRAB OPTION Link is play.google.com/store/apps/details?id=com.narenderravulakollu.library
@AbhishekJain-gs5tz3 жыл бұрын
bhaiya is video me kafi saare stl and vector use hua hai jo hame padhaya nahi gaya plz un par video bana dijiye ya fir clear kardijeye next video me
@signaturecomics72233 жыл бұрын
Aap btaye nhi ho ki konsi chiz kese horhi h sirf kr dete ho😖😖😖 me 2 dn se smjhne ki try krra hu ki ye is question me esa kr kyu rhe h🥺 ab jake smj aaya thoda aap logo ko thoda detail me btana chahaiye ki ky krne se ky hoga
@varunmahendra77723 жыл бұрын
this particular video made me to think "Am i learning chinese?!!!"
@sunny8080_3 жыл бұрын
please check🙏🙏 , the method you choose for repeating digits is not right becoz for ex. 6 1 2 3 2 1 4 no. of permutation = 180 but according to your sol , permutation = 330 , which is wrong Please check....🙏🙏
@shubamdadhwal34973 жыл бұрын
i think in your code you forget to put sort() before calling permute()
@jyoshnadeepala44392 жыл бұрын
this sol is for all unique values
@princedubey85173 жыл бұрын
Sir linked list ,stack ,graph queas tree kaa bhi data structure and algorithms using c ++kaa bataao please
@ronakbhaaya3 жыл бұрын
drive.google.com/file/d/1CxGfGFRH6nuOIvg496ZX9KwnQNljAEVj/view i guess thoda delay hogya hai but next 3-4 weeks me aajayga saara
@eductionalnewswala42413 жыл бұрын
Friends I have created android app where you can get Free textbooks and preparation books like UPSC CSE, NEET-UG, IIT-JEE, IIT-JAM, GATE, NEET-PG. GO AND GRAB OPTION Link is play.google.com/store/apps/details?id=com.narenderravulakollu.library
@SSCMTS-ku8hl3 жыл бұрын
@@ronakbhaaya bhiya can you create a group for programmer who arr beginner can have a required environment.
@smilemania51023 жыл бұрын
Good mja aa gya
@Taketospace3 жыл бұрын
the simple code for the permutation that beginner can under stand #include using namespace std; vector ans; void permute(vector &a,int idx){ if(idx==a.size()){ ans.push_back(a); return; } for (int j = idx; j < a.size(); j++){ swap(a[j],a[idx]); permute(a,idx+1); swap(a[j],a[idx]); } } int main(){ int n; cin>>n; //n size vector to take input from the user vector a(n); for (int i = 0; i >a[i]; } //function permute(a,0); //print the ans of the given problem from vector ans for (int i = 0; i < ans.size(); i++){ for (int j = 0; j
@BEESaiShivam3 жыл бұрын
its better to solve 5 problems instead of 7 but soolve in detail and with stack diagram pleaseeeee...else its of no use #Fact
@arijitanand69903 жыл бұрын
Ye vector kya hota hai aur push_back() kaun sa function hai. Ye lecture kuch samajh me nahi aa raha hai.
@GopalOswal3 жыл бұрын
Please focus on explaining logic since explaining code is very easy but let other understand the logic behind it is very difficult.
@vaibhavilohani34212 жыл бұрын
I appreciate ur efforts but i wish it were explained more clearly😔. moreover we hadn't studied about vectors yet
@himanshuprem6002 жыл бұрын
vector not taught till.. can i skip this one??? btw thank you for the course...
@anantsinghal31803 жыл бұрын
Please start uploading web development course ......
@eductionalnewswala42413 жыл бұрын
Friends I have created android app where you can get Free textbooks and preparation books like UPSC CSE, NEET-UG, IIT-JEE, IIT-JAM, GATE, NEET-PG. GO AND GRAB OPTION Link is play.google.com/store/apps/details?id=com.narenderravulakollu.library
@chiragjani41643 жыл бұрын
It's coming this week😍😍
@tusharjamadar22533 жыл бұрын
Please make special video on vector...
@bhavuktomar79353 жыл бұрын
bhaiya ek baar dry run karke dikha diya karo ek baar plzzz
@vikustorm3411 Жыл бұрын
guys please check this🙏🙏🙏🙏🙏🙏🙏🙏 on 14:20, the code for duplicate won't work for input 3 2 1 2
@Sahil.1507 Жыл бұрын
Yes brooooo
@vikustorm3411 Жыл бұрын
So just create sets to store permutation instead of vector
@trixinfite7563 жыл бұрын
if someone's crack big companies doesn't mean he is good in teaching
@shivam82323 жыл бұрын
True
@shrutibansal-52623 жыл бұрын
Bhiya plz vector pr b daldo video
@jithinrangani8663 жыл бұрын
Love it bhaiya ! but please teach about the inbuilt functions, I did not understand that
@Lakshya-fauzdar3 жыл бұрын
Bhaiya aap aage wale lectures me mat pdana , hmare ooper dya kro , aisa lag rha hai aap apne aap ko hi smjha rhe ho ......... Please
@pranaymishra44073 жыл бұрын
If possible then pls dry run or debug this question
@maulikshah283 жыл бұрын
But sir aapne abhi vectors padhaya hi nahi hai
@anshulvairagade16043 жыл бұрын
Can anyone help me vector Ka peheli Baar introduction konse topic me hua tha ? In which topic does they taught us what is vectors ?
@maulikshah283 жыл бұрын
Abhi vectors padhaya nahi hai, yeh video baad mein dekh lena jab vectors padha diya jaye mein to yahi karunga
@eductionalnewswala42413 жыл бұрын
Friends I have created android app where you can get Free textbooks and preparation books like UPSC CSE, NEET-UG, IIT-JEE, IIT-JAM, GATE, NEET-PG. GO AND GRAB OPTION Link is play.google.com/store/apps/details?id=com.narenderravulakollu.library
@mjustboring3 жыл бұрын
bhai wait matt karo sath hi dekho just thoda saa gfg pe dekh lo vector kya hota hai sath sath... jyada kuch nhi hota bass ek container hota hai stl naam ki library ka... basicaly just array ka dynamic alternative jiska size ham change kar sakte hai runtime par...
@souvikbanerjee13243 жыл бұрын
vector can be compared to dynamic array... waisa hi samajh lo abhi k liye
@akhilarya75173 жыл бұрын
Code for duplicates is wrong try running it on 1 1 2 2 and you will see wrong answer
@hyperkon98073 жыл бұрын
didi hi sahi padhati h, ye to kuch bhi explain nahi kiya vectors kaha se aa gaya?
@jayeshgoyal30312 жыл бұрын
for Vector and pairs , watch video no. 48 or 19th lecture of this C++ playlist
@anubhabsamanta85323 жыл бұрын
Bhaiya kya samjhaya.. yeh saab kya hai
@tanmaysahare23533 жыл бұрын
Bro bigner ke liy code pure new hy Jaise vector aur bht se jaise auto bro vector me error show kr raha hy run kar rahe hy to can you make it these video again with normal code jaise phle vali didi jinhone previous lecture liya tha rat in maze vala unhone jise simple code kiy the vaise aap bhi ek baar phir se video banao ye vala dev cpp me codes run nhi ho rahe hy plz make it again it is very important
@shivanshverma20112 жыл бұрын
han vector karane se pehle vector ka question karalo...ye bhi thik hai :)
@vishwajeetpawar30093 жыл бұрын
Rather than coding 2 to 3 questions in one video, go for single question and explain it in detail ,explain how easily you can visualise it ,most of us are here bcoz we don't know how to code which we visualise !!! Thanks a lot for your STL code !!!
@groovearmadaunfiltered58692 жыл бұрын
I too think so !!
@therandomyou3 жыл бұрын
After encountering a confusing lecture to make sure that I am the only one
@SumitGupta-ut5vo3 жыл бұрын
For loop ke andar kya kr diya ye.😑😑
@dipanshu_01993 жыл бұрын
DON'T WATCH THIS VIDEO FIRST , IT IS UPLOADED BY MISTAKE WATCH VIDEO NO.19 🔥🔥" vectors & pairs " 🔥🔥 AND THEN COME BACK TO WATCH THIS VIDEO.
@ramanandcse80123 жыл бұрын
Legend come back 👍👍👍👍bro aapse padh ke mja aa jata hai
@shashankdanceoff3 жыл бұрын
Bhaiya yeh wala video m kuch smj nhi aya...
@kartikgoel98043 жыл бұрын
bhaiya vectors kya hai ..samjhaya nhi apnae
@EverythingaboutTechPro3 жыл бұрын
But pehle vectors pe video to daal do ..
@iPrakharSahu2 жыл бұрын
After watching this video I checked the earlier videos , thinking that whether I missed anyone. Vector has not been taught yet , so why did they upload this video .
@arshiparveen17283 жыл бұрын
Plz explain vector separately we didn't understand that it's new for us
@Tenohekabanzai3 жыл бұрын
vector kya hai pta nhi 1st video of this course getting stuck