Thank you for wishing Happy Teachers Day ❤ Day 4 : Lecture 4 : Total 6 Hours lecture completed 🔥 Be consistent and study well. Do homework problem and first one to do butterfly hw problem will be reposted on Twitter. Share your progress on Twitter : x.com/ShradhaKhapra_
@Shradha do you have any uploaded video here which demonstrate your journey from college to become a good online teacher. It will be nice to know your journey. If you can share link or you can upload in future. Thanks.
I am amazed by the way of your teaching. The way you have cut down the problem in small pieces and solved them individually and put them together was astonishing. I didn't just learned pattern problems today. I have also learned how to tackle a problem as well. Thank you so much for this quality content. Hope to learn a lot from you.
You got it right! It is absolutely Correct! X = X + 1 can also be written as X++ which is know as Post Increment Operator (Unary Operator) similarly, you can mention X = X + 2 as X += 2 , etc.
@@safurasohail Yes why not, here's your explanation: We will take a char variable outside both the loops. Then write the outer and inner loop and at the end of the outer loop we'll just increment the character for the next line as ch++ Here's how I implemented it: //Character Version- HomeWork char ch = 'A'; cout
This is one of the best videos i`ve ever seen on pattern for newcomers to the programming and someone who wants to build the basic foundation for making their logical abilities. A lot of thanks to the makers, great work, loved it😇
Some influencers use didi to target and get views. Just call me Shradha : ) Our vision is we want to teach like we would have taught our younger siblings.
Lecture completed I tried to solve all patterns on my own and successfully solved all of it. I am feeling confident because before I couldn't solve these questions. Thank you very much Shraddha di. 😄
You are the best teacher😍. I take the classes in university but cannot understand the problems well because our teacher is taking the course like a roller coaster. I have learned a lot from you, mam. I really enjoying your course and want to study more from you. I am thankful to you for teaching us coding in a very simple and easier way. May Allah help you in all your difficulties and grant you success always.❤❤❤
35:03 Ma'am I just paused the video there and tried to solve the question myself and I am able to solve it but when I saw you solution it was different from mine I've found a new way to solve it 😄 int num; cout > num; int n = 1; for(int i=0;i
Impressed..I appreciate to your explanation ma'am...Wow & superb....in online video never seen and listen like your class or video where no need to attend offline classes..heartly salute 👏 🎉 for your dedicated explanation and teaching...you are the best in my knowledge till now...I have no more words in your praise...🎉
Shradha didi, your DSA series on RUclips is absolutely amazing! Your teaching style is so clear and easy to understand, even the toughest concepts seem simple. I've learned a lot from your videos, especially for technical interview preparation. Your contribution to helping others in this field is truly commendable... ❤
DSA series Day-4 completed I hope I will maintain this consistency with shraddha maam .Thankyou so much mam for this series and also thanks to Aman sir who behinde all of that❤🎉
In Hollow diamond question, For inner spaces of bottom part, I simply reversed the iteration (i - - , instead of i + +) and used the same logic. //bottom
for (int i = n-2; i >= 0; i--) { // As i starts with 6 to 0, similer to top but upside down
56:18 This one took a bit time. But finally got it, Although I'm not sure if it's the optimal way. int main() { int n = 4; for(int i=0; i64; j--){ //inner loop cout
16:09 Suggestion: for patterns like this, it's good to take different values of rows and columns It would make us think more about the values and can help in remembering
42:23 solved this question myself and my confidence boosted a little! I used to think i cant even solve a single basic easy question but I'm hopeful to solve tougher questions as I learn more! :)
I solved that question a little differently though, this is the solution I used to get the desired output: int main(){ int n; cin >> n; int num = 1; for (int i = 0; i < n; i++) { for (int j = 0; j < i+1; j++) { cout
47:00 By just interchanging the datatypes and values, I solved the characters question correctly as well :) here's my solution: int main(){ int n; cin >> n; char ch = 'A'; for (int i = 0; i < n; i++) { for (int j = 0; j < i+1; j++) { cout
48:02 Solved this question too how's this possible 😭🙏 Here's my solution: int main(){ int n; cin >> n; int num; for (int i = 0; i < n; i++) { num = 1; for (int j = 0; j < i+1; j++) { cout
Hello Didi,👋 Lecture 2 was completed successfully, I solved the pattern question easily. After watching this video of yours, I am very excited to watch your next lecture.
Thank u mam for giving a such a good content.I have been following ur courses upto date . I have followed all ur frontend html,css,js all the courses . The level of ur content making is outstanding this makes us easily understand all the topics upto the mark.
Time Stamp : 55:55 (Home Work Problem Solution) [ Floyd's Triangle Character Pattern] int n = 4; char ch = 'A' ; for (int i = 0 ; i < n ; i ++) for (int j = 1 ; j
Thank you so much ma'am 🎉🎉 l am very big fan of you 😍 your teaching method is wow ❤ I was a medical student now I am very confused 😢 about taking this step into software engineering but your lecture is very useful to me 🎉🎉😊
We are really really really really grateful for this really indeed this DSA playlist Along with this designed order is like cherry on the top. Thankkkkkkkuuuuu so much ❤
Thank you for wishing Happy Teachers Day ❤
Day 4 : Lecture 4 : Total 6 Hours lecture completed 🔥
Be consistent and study well.
Do homework problem and first one to do butterfly hw problem will be reposted on Twitter.
Share your progress on Twitter : x.com/ShradhaKhapra_
Yes mam
President day 4
Mam plzz problems bhia Karin sath
Thanks ma'am 🙏
@Shradha do you have any uploaded video here which demonstrate your journey from college to become a good online teacher. It will be nice to know your journey. If you can share link or you can upload in future. Thanks.
I am amazed by the way of your teaching. The way you have cut down the problem in small pieces and solved them individually and put them together was astonishing. I didn't just learned pattern problems today. I have also learned how to tackle a problem as well. Thank you so much for this quality content. Hope to learn a lot from you.
I implemented the 19:42 line with a different approach.
Rather writing ch = ch +1; on next line,
We can also write
for ( int j=0; j
You got it right! It is absolutely Correct!
X = X + 1 can also be written as X++ which is know as Post Increment Operator (Unary Operator)
similarly, you can mention X = X + 2 as X += 2 , etc.
Can you plz explain 47:30 char pattern that we have to do as homework???
@@safurasohail Yes why not, here's your explanation:
We will take a char variable outside both the loops.
Then write the outer and inner loop and at the end of the outer loop we'll just increment the character for the next line as ch++
Here's how I implemented it:
//Character Version- HomeWork
char ch = 'A';
cout
@@avadhutnoola Alright thankyou so muchhhh👍
Is this true for following pattern:
A
BA
CBA
DCBA
int n=4;
char ch='A';
for(int i=0;i='A';j--){
cout
1:03:16 Done.
// Q. inverted triangle with spaces first followed by characters
int main(){
int n = 4;
// char ch = 'A';
for(int i=0; i
In Hollow diamond question,
For inner spaces of bottom part, instead of
j
it will only work till n=4
This is one of the best videos i`ve ever seen on pattern for newcomers to the programming and someone who wants to build the basic foundation for making their logical abilities. A lot of thanks to the makers, great work, loved it😇
We are fortunate that we have a teacher like shraddha didi 💝💝😊
Some influencers use didi to target and get views.
Just call me Shradha : )
Our vision is we want to teach like we would have taught our younger siblings.
@@ApnaCollegeOfficialhi shraddha didi, i only knows python language can i continue this series?
@@ApnaCollegeOfficialhamey farq nhi padtha influencers kya karenge u are and u will be our didi forever
@@ApnaCollegeOfficial
Could we call sharda mam❤
@@ajaychimnani7985 Yes Ajay, start with lecture 1 of DSA series. You won't face any problem
56:19 - (Homework problem)
Reverse Triangle problem:
int n=4, i, j;
for(i=0; i0; j--)
{
cout
Thank you❤
thanks
Bro after cout next line there will be ch=ch-1
@@roshandas5560 Not necessary, the answer is coming by this code too!
Thankyou Very Much!
Leave attendance here--->>
Roll no. 21
Present ma'am🙋🙋🙋
Present Miss 🎉
present
Present mam
Present
Lecture completed
I tried to solve all patterns on my own and successfully solved all of it. I am feeling confident because before I couldn't solve these questions. Thank you very much Shraddha di. 😄
Happy Teacher's day didi❤... Thank you for your efforts✨
C++ , DSA Journey
Day - 4.
Let's go guy's ❤
Day 4 ❤
bhai santi se lecture dekh na kya jarurt hai comment me bakch0di krne ka
47:08 DONE.
int main() {
int n = 5;
char ch = 'A';
for(int i=0; i
46:55 homework
Int n=4;
char ch='A';
for(int i=0;i
Thanks😊
thanks bro
Wrong
@@vishalmadargaon where bro??
Can u plz type the code for
A
BA
CBA
DCBA
Finished the 4th lecture. Things are getting interesting now. Thank you for the class.
1:03:18
inner loop logic
Char ch ='A'; ch +=i;
for( int j=0; j=n- i; j++) {
cout
You are the best teacher😍. I take the classes in university but cannot understand the problems well because our teacher is taking the course like a roller coaster. I have learned a lot from you, mam. I really enjoying your course and want to study more from you. I am thankful to you for teaching us coding in a very simple and easier way.
May Allah help you in all your difficulties and grant you success always.❤❤❤
Happy Teacher's day didi ❤❤
i have been studing c++ for 3 months in uni but didnt get a single concept n by just 3 lec of yours it got me all thanks alot
Thank you 🥳 mam
Happy teacher's day 🎉🤗
Lecture done... Have been consistent for past three days
35:03 Ma'am I just paused the video there and tried to solve the question myself and I am able to solve it
but when I saw you solution it was different from mine I've found a new way to solve it 😄
int num;
cout > num;
int n = 1;
for(int i=0;i
yes this is also right
Impressed..I appreciate to your explanation ma'am...Wow & superb....in online video never seen and listen like your class or video where no need to attend offline classes..heartly salute 👏 🎉 for your dedicated explanation and teaching...you are the best in my knowledge till now...I have no more words in your praise...🎉
Happy teachers day ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️🙏🙏🙏🙏🙏❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️
Shradha didi, your DSA series on RUclips is absolutely amazing! Your teaching style is so clear and easy to understand, even the toughest concepts seem simple. I've learned a lot from your videos, especially for technical interview preparation. Your contribution to helping others in this field is truly commendable...
❤
Thanks for this precious gift💖🥰
Day 4 complete 🎉
I hope this energy goes throughout the course
Happy Teacher's day mam🎉
52:43
what I did, before watching the solution
int main() {
int n = 3;
//char ch = 'A';
for(int i=0; i0; j--){ //inner loop
cout
DSA series Day-4 completed I hope I will maintain this consistency with shraddha maam .Thankyou so much mam for this series and also thanks to Aman sir who behinde all of that❤🎉
bhai santi se lecture dekh na kya jarurt hai comment me bakch0di krne ka
42:26 -(Problem) my approach is different
for(int i = 0; i
the butterfly pattern :
for (int i=1;i
i was struggling, how were u able to solve it TT
@amna4uh it's alright man just keep practicing this will start to look easy later on
Lecture 3 completed and I learned a lot from this video
East and West
Shradha didi is best
❣️
Shardha ma’am best
Shardha best coding teacher hn
47:25 In JavaScript
let N = 5
for (let i = 1; i
Kindly elaborate this problem i did not understand that. anyone ?
1:03:19
int main() {
// Write C++ code here
int n =4;
char ch = 'A';
for(int i =0;i
Starting New year's morning with learning Patterns.
day 4:completed
thanku so much ❤
last question rh raha h hollow digram m khud se kr rahi hu 2 line print ho gye neche ka rh raha bs thanku
1:02:41 maine same to same code likha, lekin output different aa raha h
In Hollow diamond question,
For inner spaces of bottom part,
I simply reversed the iteration (i - - , instead of i + +) and used the same logic.
//bottom
for (int i = n-2; i >= 0; i--) { // As i starts with 6 to 0, similer to top but upside down
for (int j = 0; j < n-i-1; j++) {
cout
Aaj mai pahala comment Kiya pliss bro&sis like my comments 😂😂
I completed the lecture 4 on 24/12/2024.
I learnt too much new things.
Thank you so much ma'am
56:20 homework
int n , a;
cin>> n;
for(int i=0;i
Thank you so much
thank you 🙏
Pretty good logic
thankyou
Correct
Thank you shraddha didi for this 🥹 I understood very well. Without you we couldn't learn this much better . Thanks for everything . ✨
Mam aapne jo hame youtube ke through diya na , offline teachers v na de paye
Tnx for alllll ur efforts for usss
Happy teachers day
Facts!
bhai santi se lecture dekh na kya jarurt hai comment me bakch0di krne ka
56:18 This one took a bit time. But finally got it, Although I'm not sure if it's the optimal way.
int main() {
int n = 4;
for(int i=0; i64; j--){ //inner loop
cout
thats perfect
Day 4 Completed ❤,, 7 September 2024 ,,,Thankyou Shraddha Didi 😊 God bless you 🤌🏻...Happy Ganesh Chaturthi...Ganapati Bappa Morya 🎉
the way of her teaching is looking easy like water...
Keep moving forward in life....
thanks a lot
1:28:20 day 4 completed 👌💯
This video takes me 2 days to complete
@@24F200PUSHKARC same here bro .. this video takes me 5 days to complete.🥲🥲
49:43 Same for character, not asked for but just for fun.
int main() {
int n = 5;
char ch = 'A';
for(int i=0; i
mam plzz ek request hai itne long mat rakho videos ....dimag mai kichdi baan jaati hai
Instead of full vid per day
Are to ye vdo b to chunks me divided h usko dekh liya kr one after one
1:28 you have wrote if(i!=n-2)
We can also write it as if(i!=2)
Next playlist on networking
Yes Didi please
lecture completed.....after solving the butterfly problem i feel happy that i am able to do it .
Leave your oil button -->
@@dopeesportz4830 hii
A brilliant lecture, never felt pattern printing would become so easy with that simple rule, thank u so much mam
DAY 4
05 sep 24
complete
HAPPY TEACHER'S DAY
a teacher like you is a blessing to us thank you for this effort mam
RADHE RADHE
can you solve butterfly pattern
33:02 Thank you so very much for explaining this so systematically and in detail.
Oiling up rn
Hi
@anonymousstudy hello
39:38 Done.
int main() {
int n = 3;
char ch = 'A';
for(int i=0; i
// triangle pattern char
int main(){
int n=5;
char ch='A';
for(int i=0; i
Thanks for your code
just amazing explaination mam 😍😍
Aman dhatarwaal bhaiya ko oil up krdo😂😂😅😢😢😢
Merko beh kardo diidy
Sorry diddy abh hum nahi krenge shor lekin bache na khele toh ho jayenge bore 😂
@@dopeesportz4830 Hii
triangel ke dono question ke code khud se soach liye me wohi dry discussion se thanks mam for great oppurtunuity🥰
First comment
lucky
Bhakkkk
16:09 Suggestion: for patterns like this, it's good to take different values of rows and columns
It would make us think more about the values and can help in remembering
42:23
solved this question myself and my confidence boosted a little! I used to think i cant even solve a single basic easy question but I'm hopeful to solve tougher questions as I learn more! :)
I solved that question a little differently though, this is the solution I used to get the desired output:
int main(){
int n;
cin >> n;
int num = 1;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < i+1; j++)
{
cout
47:00
By just interchanging the datatypes and values, I solved the characters question correctly as well :)
here's my solution:
int main(){
int n;
cin >> n;
char ch = 'A';
for (int i = 0; i < n; i++)
{
for (int j = 0; j < i+1; j++)
{
cout
48:02
Solved this question too how's this possible 😭🙏
Here's my solution:
int main(){
int n;
cin >> n;
int num;
for (int i = 0; i < n; i++)
{
num = 1;
for (int j = 0; j < i+1; j++)
{
cout
Lecture 4 completed
Thank you 😍😍😍😍😍
29:17 can also for(i=1;i
Done with all home work questions and butterfly question too :)
Thanks Apna College :))
17th october
Completed lecture 4🎉🎉
Solved the hw problem on my own😊
Thank you Shradha mam❤
Day - 4 Completed of DSA learning Journey ✌
Hello Didi,👋
Lecture 2 was completed successfully, I solved the pattern question easily. After watching this video of yours, I am very excited to watch your next lecture.
Thank u mam for giving a such a good content.I have been following ur courses upto date . I have followed all ur frontend html,css,js all the courses . The level of ur content making is outstanding this makes us easily understand all the topics upto the mark.
#ComebackSTRONGER 0💪🔥
Best Part of Video: DRY RUN (Very clearity)
29:20
Time Stamp : 55:55 (Home Work Problem Solution) [ Floyd's Triangle Character Pattern]
int n = 4;
char ch = 'A' ;
for (int i = 0 ; i < n ; i ++)
for (int j = 1 ; j
Hw problem 34:07
int n = 3
int ch = "A"
for (int i = 1; i
Bro you did it wrong 😅
Ch++ after the inner loop end then we increment the ch value
but its result is coming in ASCII value and we have to get it in character form
Thanks a lot of you ma'am for explaining in detail this pattern👉 1 2 3
4 5 6
7 8 9
nested loop. i understood very well.🤗
🙏🙏Our luck is good, Shraddha didi Betle taught us in the free madhe. I am proud of you mam🙏🙏
Happiest teachers day Shradha di.🥳...and today's lecture was wonderful❤
cout
Happy Teachers to the best Programming Teacher Ever...
34:38 = Solution in JAVA (My approach)
int n =3;
char ch = 'A';
for(int i =0; i
In Diamand pattern use, For outer loop
for(int j=0 ; j
Thank you so much ma'am 🎉🎉 l am very big fan of you 😍 your teaching method is wow ❤ I was a medical student now I am very confused 😢 about taking this step into software engineering but your lecture is very useful to me 🎉🎉😊
Mam i have completed lecture-4 on 4/1/25
I shall stay consistent
thank you mam!
I have completed the lecture and homework problems as well. Thanks mam for such great explation.
Best video to learn loops ❤ mam apka shukriya kabhi nhi kar pauga 💔
completed this lecture on 29 Nov 2024.
Also completed all of the homework problems.
Really liked your explanation .
at 49:21
int n=4;
for(int i=0;i
DSA Series Day -4 completed. My day 4 attendance is here . Thankyou shraddha didi.❤❤
Nicest explanation ever❤getting the points which i've never known before
Thank deedi for providing Subtitles are in English.
you deserve millions of millions subscribers♥
I will stayconsistent in this course and code everyday completed 3 days now
Happy teacher's day shraddha mam and thank you for the series
We are really really really really grateful for this really indeed this DSA playlist
Along with this designed order is like cherry on the top.
Thankkkkkkkuuuuu so much ❤
Happy Teacher's day Shradha didi❤❤❤❤ never before ever after ur teaching didi❤❤❤🎉
Lecture 4 completed 🎉🎉🎉
Happy teacher's day ma'am 😊😊
1:29:14 Butterfly Pattern Problem :
for(int i=0; i