Lecture 4: Patterns | DSA Series by Shradha Khapra Ma'am | C++

Поделиться
HTML-код
  • Опубликовано: 26 янв 2025

Комментарии • 1,4 тыс.

  • @ApnaCollegeOfficial
    @ApnaCollegeOfficial  4 месяца назад +327

    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_

    • @ayushkumaryadav2767
      @ayushkumaryadav2767 4 месяца назад +1

      Yes mam

    • @MotelysPodcast
      @MotelysPodcast 4 месяца назад +1

      President day 4

    • @Mirfaqjavaid
      @Mirfaqjavaid 4 месяца назад

      Mam plzz problems bhia Karin sath

    • @QuantumCodersOfficial
      @QuantumCodersOfficial 4 месяца назад +1

      Thanks ma'am 🙏

    • @prakash13565
      @prakash13565 4 месяца назад

      @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.

  • @hasanmubin4935
    @hasanmubin4935 4 месяца назад +23

    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.

  • @avadhutnoola
    @avadhutnoola 4 месяца назад +32

    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

    • @jaden_unjading
      @jaden_unjading 4 месяца назад +8

      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
      @safurasohail 4 месяца назад +1

      Can you plz explain 47:30 char pattern that we have to do as homework???

    • @avadhutnoola
      @avadhutnoola 4 месяца назад +7

      ​@@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

    • @safurasohail
      @safurasohail 4 месяца назад

      @@avadhutnoola Alright thankyou so muchhhh👍

    • @safurasohail
      @safurasohail 4 месяца назад

      Is this true for following pattern:
      A
      BA
      CBA
      DCBA
      int n=4;
      char ch='A';
      for(int i=0;i='A';j--){
      cout

  • @shreyansh2244
    @shreyansh2244 15 дней назад +3

    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

  • @pratibhasingh4614
    @pratibhasingh4614 4 месяца назад +14

    In Hollow diamond question,
    For inner spaces of bottom part, instead of
    j

  • @raginiroy9929
    @raginiroy9929 Месяц назад +3

    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😇

  • @TarzenAshu
    @TarzenAshu 4 месяца назад +202

    We are fortunate that we have a teacher like shraddha didi 💝💝😊

    • @ApnaCollegeOfficial
      @ApnaCollegeOfficial  4 месяца назад +208

      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.

    • @ajaychimnani7985
      @ajaychimnani7985 4 месяца назад +6

      ​​@@ApnaCollegeOfficialhi shraddha didi, i only knows python language can i continue this series?

    • @dnspavankumar695
      @dnspavankumar695 4 месяца назад +4

      ​@@ApnaCollegeOfficialhamey farq nhi padtha influencers kya karenge u are and u will be our didi forever

    • @VISHAL.JONWAL
      @VISHAL.JONWAL 4 месяца назад +2

      ​@@ApnaCollegeOfficial
      Could we call sharda mam❤

    • @ApnaCollegeOfficial
      @ApnaCollegeOfficial  4 месяца назад +16

      @@ajaychimnani7985 Yes Ajay, start with lecture 1 of DSA series. You won't face any problem

  • @TaiyabaAkhtar
    @TaiyabaAkhtar 3 месяца назад +36

    56:19 - (Homework problem)
    Reverse Triangle problem:
    int n=4, i, j;
    for(i=0; i0; j--)
    {
    cout

  • @asim_eqbal
    @asim_eqbal 4 месяца назад +526

    Leave attendance here--->>

  • @C-AjitYalasangi
    @C-AjitYalasangi 2 месяца назад +1

    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. 😄

  • @krupathakkar4372
    @krupathakkar4372 4 месяца назад +12

    Happy Teacher's day didi❤... Thank you for your efforts✨

  • @ROCKY-108-S99
    @ROCKY-108-S99 4 месяца назад +71

    C++ , DSA Journey
    Day - 4.
    Let's go guy's ❤

    • @opdj3445
      @opdj3445 4 месяца назад

      Day 4 ❤

    • @himanshu1957
      @himanshu1957 4 месяца назад +1

      bhai santi se lecture dekh na kya jarurt hai comment me bakch0di krne ka

  • @shreyansh2244
    @shreyansh2244 16 дней назад +1

    47:08 DONE.
    int main() {
    int n = 5;
    char ch = 'A';
    for(int i=0; i

  • @AjaynayakEslavath
    @AjaynayakEslavath 3 месяца назад +13

    46:55 homework
    Int n=4;
    char ch='A';
    for(int i=0;i

  • @justarandomguy1363
    @justarandomguy1363 8 дней назад

    Finished the 4th lecture. Things are getting interesting now. Thank you for the class.

  • @vishnusharma805
    @vishnusharma805 3 месяца назад +3

    1:03:18
    inner loop logic
    Char ch ='A'; ch +=i;
    for( int j=0; j=n- i; j++) {
    cout

  • @muhammadwajihulhassan5123
    @muhammadwajihulhassan5123 2 месяца назад +2

    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.❤❤❤

  • @yashvermacoding
    @yashvermacoding 4 месяца назад +5

    Happy Teacher's day didi ❤❤

  • @AbdusSamieTahir
    @AbdusSamieTahir 9 дней назад

    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

  • @DhanshriGd
    @DhanshriGd 4 месяца назад +5

    Thank you 🥳 mam
    Happy teacher's day 🎉🤗

  • @Nidhi_2408
    @Nidhi_2408 28 дней назад

    Lecture done... Have been consistent for past three days

  • @ForFarzivada-kc5pf
    @ForFarzivada-kc5pf 4 месяца назад +7

    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

  • @readeing
    @readeing 3 месяца назад +1

    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...🎉

  • @AyushKumar-jf7ip
    @AyushKumar-jf7ip 4 месяца назад +9

    Happy teachers day ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️🙏🙏🙏🙏🙏❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️

  • @avishkargamer8238
    @avishkargamer8238 4 месяца назад +1

    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...

  • @ankitnandi8621
    @ankitnandi8621 4 месяца назад +4

    Thanks for this precious gift💖🥰

  • @saisuryamalla209
    @saisuryamalla209 Месяц назад

    Day 4 complete 🎉
    I hope this energy goes throughout the course

  • @manjunatha2575
    @manjunatha2575 4 месяца назад +4

    Happy Teacher's day mam🎉

  • @shreyansh2244
    @shreyansh2244 16 дней назад

    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

  • @StudywithmeAkku
    @StudywithmeAkku 4 месяца назад +3

    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❤🎉

    • @himanshu1957
      @himanshu1957 4 месяца назад

      bhai santi se lecture dekh na kya jarurt hai comment me bakch0di krne ka

  • @mnarian
    @mnarian Месяц назад +1

    42:26 -(Problem) my approach is different
    for(int i = 0; i

  • @oddneighbour
    @oddneighbour 4 месяца назад +20

    the butterfly pattern :
    for (int i=1;i

    • @x.an4ax
      @x.an4ax 9 дней назад +1

      i was struggling, how were u able to solve it TT

    • @oddneighbour
      @oddneighbour 9 дней назад +1

      @amna4uh it's alright man just keep practicing this will start to look easy later on

  • @hhhsolutions4866
    @hhhsolutions4866 13 дней назад

    Lecture 3 completed and I learned a lot from this video

  • @YuvrajSingh-qy3vc
    @YuvrajSingh-qy3vc 4 месяца назад +4

    East and West
    Shradha didi is best
    ❣️

  • @sheScripts
    @sheScripts 3 месяца назад +2

    47:25 In JavaScript
    let N = 5
    for (let i = 1; i

    • @kamilmehtab55
      @kamilmehtab55 3 месяца назад

      Kindly elaborate this problem i did not understand that. anyone ?

  • @slayer6395
    @slayer6395 3 месяца назад +3

    1:03:19
    int main() {
    // Write C++ code here
    int n =4;
    char ch = 'A';
    for(int i =0;i

  • @tyni482
    @tyni482 26 дней назад

    Starting New year's morning with learning Patterns.

  • @radhekrishnadg952
    @radhekrishnadg952 4 месяца назад +5

    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

    • @Mr.d44
      @Mr.d44 3 месяца назад

      1:02:41 maine same to same code likha, lekin output different aa raha h

  • @madh6244
    @madh6244 Месяц назад +2

    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

  • @MuskanPatel-y6u
    @MuskanPatel-y6u 4 месяца назад +22

    Aaj mai pahala comment Kiya pliss bro&sis like my comments 😂😂

  • @RameshNayak-R
    @RameshNayak-R Месяц назад +1

    I completed the lecture 4 on 24/12/2024.
    I learnt too much new things.
    Thank you so much ma'am

  • @beneleven-l4l
    @beneleven-l4l 4 месяца назад +10

    56:20 homework
    int n , a;
    cin>> n;
    for(int i=0;i

  • @saisneha4851
    @saisneha4851 Месяц назад

    Thank you shraddha didi for this 🥹 I understood very well. Without you we couldn't learn this much better . Thanks for everything . ✨

  • @airsonkrishna
    @airsonkrishna 4 месяца назад +4

    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

    • @sarvjot495
      @sarvjot495 4 месяца назад +2

      Facts!

    • @himanshu1957
      @himanshu1957 4 месяца назад

      bhai santi se lecture dekh na kya jarurt hai comment me bakch0di krne ka

  • @shreyansh2244
    @shreyansh2244 16 дней назад +1

    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

  • @IRONMAN-kq6dx
    @IRONMAN-kq6dx 4 месяца назад +5

    Day 4 Completed ❤,, 7 September 2024 ,,,Thankyou Shraddha Didi 😊 God bless you 🤌🏻...Happy Ganesh Chaturthi...Ganapati Bappa Morya 🎉

  • @utshawgaming2301
    @utshawgaming2301 4 месяца назад

    the way of her teaching is looking easy like water...
    Keep moving forward in life....
    thanks a lot

  • @alwaysanujsharma
    @alwaysanujsharma 4 месяца назад +9

    1:28:20 day 4 completed 👌💯

    • @24F200PUSHKARC
      @24F200PUSHKARC 4 месяца назад

      This video takes me 2 days to complete

    • @raiyansimon6759
      @raiyansimon6759 3 месяца назад

      @@24F200PUSHKARC same here bro .. this video takes me 5 days to complete.🥲🥲

  • @shreyansh2244
    @shreyansh2244 16 дней назад

    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

  • @sahilthapa9668
    @sahilthapa9668 4 месяца назад +10

    mam plzz ek request hai itne long mat rakho videos ....dimag mai kichdi baan jaati hai

    • @MandarBedi
      @MandarBedi Месяц назад

      Instead of full vid per day

    • @techazmat01
      @techazmat01 Месяц назад

      Are to ye vdo b to chunks me divided h usko dekh liya kr one after one

  • @shorts_5.2jh
    @shorts_5.2jh 3 месяца назад

    1:28 you have wrote if(i!=n-2)
    We can also write it as if(i!=2)

  • @Himanshudixit9695
    @Himanshudixit9695 4 месяца назад +5

    Next playlist on networking

  • @fizahassan9658
    @fizahassan9658 4 месяца назад +1

    lecture completed.....after solving the butterfly problem i feel happy that i am able to do it .

  • @dopeesportz4830
    @dopeesportz4830 2 месяца назад +5

    Leave your oil button -->

  • @madmanplayz3412
    @madmanplayz3412 4 месяца назад +1

    A brilliant lecture, never felt pattern printing would become so easy with that simple rule, thank u so much mam

  • @Anjali_rani1
    @Anjali_rani1 4 месяца назад +8

    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

  • @shreyansh2244
    @shreyansh2244 16 дней назад

    33:02 Thank you so very much for explaining this so systematically and in detail.

  • @dopeesportz4830
    @dopeesportz4830 2 месяца назад +5

    Oiling up rn

  • @shreyansh2244
    @shreyansh2244 16 дней назад

    39:38 Done.
    int main() {
    int n = 3;
    char ch = 'A';
    for(int i=0; i

  • @PremrajJadhav-m8z
    @PremrajJadhav-m8z 3 месяца назад +4

    // triangle pattern char
    int main(){
    int n=5;
    char ch='A';
    for(int i=0; i

  • @Harsh_gupta971
    @Harsh_gupta971 2 месяца назад

    just amazing explaination mam 😍😍

  • @dopeesportz4830
    @dopeesportz4830 2 месяца назад +3

    Aman dhatarwaal bhaiya ko oil up krdo😂😂😅😢😢😢

    • @Frankyplayz2
      @Frankyplayz2 2 месяца назад

      Merko beh kardo diidy

    • @dopeesportz4830
      @dopeesportz4830 2 месяца назад

      Sorry diddy abh hum nahi krenge shor lekin bache na khele toh ho jayenge bore 😂

    • @anonymousstudy
      @anonymousstudy Месяц назад

      @@dopeesportz4830 Hii

  • @NAUSHAD-j9j
    @NAUSHAD-j9j Месяц назад +1

    triangel ke dono question ke code khud se soach liye me wohi dry discussion se thanks mam for great oppurtunuity🥰

  • @m_jashwanth_0046
    @m_jashwanth_0046 4 месяца назад +7

    First comment

  • @sarvjot495
    @sarvjot495 4 месяца назад +2

    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

  • @Anonymous-id7ku
    @Anonymous-id7ku 25 дней назад

    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! :)

    • @Anonymous-id7ku
      @Anonymous-id7ku 25 дней назад

      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

    • @Anonymous-id7ku
      @Anonymous-id7ku 25 дней назад

      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

    • @Anonymous-id7ku
      @Anonymous-id7ku 25 дней назад

      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

  • @krishna_sharma5700
    @krishna_sharma5700 4 месяца назад

    Lecture 4 completed
    Thank you 😍😍😍😍😍

  • @shahulqamar
    @shahulqamar 8 дней назад

    29:17 can also for(i=1;i

  • @Vanshverma_
    @Vanshverma_ Месяц назад

    Done with all home work questions and butterfly question too :)
    Thanks Apna College :))

  • @CodeYT-qw7yo
    @CodeYT-qw7yo 3 месяца назад

    17th october
    Completed lecture 4🎉🎉
    Solved the hw problem on my own😊
    Thank you Shradha mam❤

  • @ghostninja6589
    @ghostninja6589 Месяц назад

    Day - 4 Completed of DSA learning Journey ✌

  • @CodeWith_Harsh72
    @CodeWith_Harsh72 4 месяца назад

    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.

  • @Robotaiworldpresence
    @Robotaiworldpresence 4 месяца назад

    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.

  • @Coder-j6q
    @Coder-j6q 3 месяца назад +1

    #ComebackSTRONGER 0💪🔥
    Best Part of Video: DRY RUN (Very clearity)
    29:20

  • @HARSHVARDHANDESAI-q3q
    @HARSHVARDHANDESAI-q3q 3 месяца назад

    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

  • @anishkaagarwal8941
    @anishkaagarwal8941 4 месяца назад +1

    Hw problem 34:07
    int n = 3
    int ch = "A"
    for (int i = 1; i

    • @Peaceful_log
      @Peaceful_log 4 месяца назад

      Bro you did it wrong 😅

    • @Peaceful_log
      @Peaceful_log 4 месяца назад

      Ch++ after the inner loop end then we increment the ch value

    • @atiyazehra6599
      @atiyazehra6599 6 дней назад

      but its result is coming in ASCII value and we have to get it in character form

  • @arfakhatoon7898
    @arfakhatoon7898 4 месяца назад

    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.🤗

  • @umadi3261
    @umadi3261 4 месяца назад +1

    🙏🙏Our luck is good, Shraddha didi Betle taught us in the free madhe. I am proud of you mam🙏🙏

  • @Zachxx300
    @Zachxx300 4 месяца назад

    Happiest teachers day Shradha di.🥳...and today's lecture was wonderful❤

  • @asaadjawed1574
    @asaadjawed1574 Месяц назад

    cout

  • @HaqqanHaider
    @HaqqanHaider 4 месяца назад

    Happy Teachers to the best Programming Teacher Ever...

  • @mridul__grover
    @mridul__grover 4 месяца назад

    34:38 = Solution in JAVA (My approach)
    int n =3;
    char ch = 'A';
    for(int i =0; i

  • @hjt1118
    @hjt1118 18 дней назад

    In Diamand pattern use, For outer loop
    for(int j=0 ; j

  • @RafiaRiaz-o9p
    @RafiaRiaz-o9p 8 дней назад

    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 🎉🎉😊

  • @harshap1175
    @harshap1175 23 дня назад

    Mam i have completed lecture-4 on 4/1/25
    I shall stay consistent
    thank you mam!

  • @technoak8512
    @technoak8512 3 месяца назад

    I have completed the lecture and homework problems as well. Thanks mam for such great explation.

  • @magnusguygaming
    @magnusguygaming Месяц назад

    Best video to learn loops ❤ mam apka shukriya kabhi nhi kar pauga 💔

  • @ayushvyas1273
    @ayushvyas1273 Месяц назад

    completed this lecture on 29 Nov 2024.
    Also completed all of the homework problems.
    Really liked your explanation .

  • @ApnaKalejLNCT
    @ApnaKalejLNCT 16 дней назад

    at 49:21
    int n=4;
    for(int i=0;i

  • @shobhitpandey7830
    @shobhitpandey7830 4 месяца назад +2

    DSA Series Day -4 completed. My day 4 attendance is here . Thankyou shraddha didi.❤❤

  • @noorehira9894
    @noorehira9894 4 месяца назад

    Nicest explanation ever❤getting the points which i've never known before

  • @nandeeshb4858
    @nandeeshb4858 4 месяца назад +1

    Thank deedi for providing Subtitles are in English.

  • @kimsejeong218
    @kimsejeong218 4 месяца назад

    you deserve millions of millions subscribers♥

  • @Throttle77
    @Throttle77 4 месяца назад

    I will stayconsistent in this course and code everyday completed 3 days now

  • @Manpreet_saini696
    @Manpreet_saini696 4 месяца назад

    Happy teacher's day shraddha mam and thank you for the series

  • @Jerry_aryan
    @Jerry_aryan 3 месяца назад

    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 ❤

  • @vemulasoumyasri830
    @vemulasoumyasri830 4 месяца назад

    Happy Teacher's day Shradha didi❤❤❤❤ never before ever after ur teaching didi❤❤❤🎉

  • @MidShanti
    @MidShanti 26 дней назад +1

    Lecture 4 completed 🎉🎉🎉

  • @KrupaliJadav-k7h
    @KrupaliJadav-k7h 4 месяца назад

    Happy teacher's day ma'am 😊😊

  • @Dnyaneshwar037
    @Dnyaneshwar037 20 дней назад +2

    1:29:14 Butterfly Pattern Problem :
    for(int i=0; i