Reverse A String In Java | Program To Reverse A String | Reverse String In Java | Java Interview

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ม.ค. 2025

ความคิดเห็น • 59

  • @michaelwest7125
    @michaelwest7125 6 หลายเดือนก่อน +1

    This was the best explanation ever thank u… everyone else vids talk about using an array then using the for loop and writing the expressions backwards … this vid was so much better explained

    • @CodeCrushCoding
      @CodeCrushCoding  6 หลายเดือนก่อน

      Thanks! Do subscribe to channel

  • @luongdungnguyen6770
    @luongdungnguyen6770 11 หลายเดือนก่อน +1

    i love you man, just subscribed !!

  • @vikashthakur-d5t
    @vikashthakur-d5t 11 หลายเดือนก่อน

    Just so simple to understand bro. Great work

  • @THEBROWNGIRL____
    @THEBROWNGIRL____ 3 หลายเดือนก่อน +1

    Thank you so much. Here you gained new subscriber.

  • @RangaRajuth
    @RangaRajuth 2 ปีที่แล้ว +4

    It's really very clear explanation 🤠

    • @CodeCrushCoding
      @CodeCrushCoding  2 ปีที่แล้ว

      Thank you! Do like & Subscribe to channel 👍

  • @Ayaan-r8p
    @Ayaan-r8p 2 หลายเดือนก่อน +1

    Accha padaya Baccha!

  • @rightwingguy371
    @rightwingguy371 2 หลายเดือนก่อน

    what an explanation bro ! i'm totally impressed thanks subscribed

  • @natashakaul1544
    @natashakaul1544 2 หลายเดือนก่อน

    Nice

  • @Bruiser03
    @Bruiser03 7 หลายเดือนก่อน

    Thnx dude ... u gave an easy explanation but this ques is better if done with 2 pointer
    still thnx

  • @lakshmiprasanna5052
    @lakshmiprasanna5052 7 หลายเดือนก่อน

    Super exaplantion sir

  • @SriThings123
    @SriThings123 8 หลายเดือนก่อน

    Good Explanation bro. I easily understood.

  • @bishwajitbera4407
    @bishwajitbera4407 9 หลายเดือนก่อน

    Amazing explanation ❤

  • @Fizmogames
    @Fizmogames ปีที่แล้ว

    Thankyou sir very helpfull💯

  • @sureshbabu_r7623
    @sureshbabu_r7623 4 หลายเดือนก่อน

    great explanation boss. Thank you

  • @spencermasauko8442
    @spencermasauko8442 8 หลายเดือนก่อน

    You got a new subscriber ❤

  • @guraiahdhupati
    @guraiahdhupati ปีที่แล้ว

    explanation is super 👌👌👌👌

  • @sandhyasandy1160
    @sandhyasandy1160 ปีที่แล้ว

    I understand very well tanq sir 🙏🙏

  • @yermalpavan1304
    @yermalpavan1304 ปีที่แล้ว

    awesome explanation guru

  • @ravalimanchala8170
    @ravalimanchala8170 ปีที่แล้ว

    Thank u very much sir. Nice explaination keep doing sir

  • @fardinmujawar5188
    @fardinmujawar5188 ปีที่แล้ว

    Good explanation ✨

  • @BechlorBuddy
    @BechlorBuddy ปีที่แล้ว

    nice brother
    clear explanation

  • @manognaoraganti1136
    @manognaoraganti1136 ปีที่แล้ว

    Really amazing.. keep going 👍

  • @janhavimahale1226
    @janhavimahale1226 ปีที่แล้ว

    Thank you so much for such great explaination

  • @annu0317
    @annu0317 ปีที่แล้ว

    nice explanation

  • @sondekerehanumanthreddy1308
    @sondekerehanumanthreddy1308 11 หลายเดือนก่อน

    Thank you sooooo much❤

  • @shahbazainarkar1722
    @shahbazainarkar1722 ปีที่แล้ว

    Good one bruh❤

  • @novagotnochill5067
    @novagotnochill5067 ปีที่แล้ว +1

    Good explanation dude

  • @rishu_bhuvi5344
    @rishu_bhuvi5344 ปีที่แล้ว +1

    Good explanation,sir plz make a video on reverse an Array

    • @CodeCrushCoding
      @CodeCrushCoding  ปีที่แล้ว +1

      Ok, Will upload it soon.

    • @rishu_bhuvi5344
      @rishu_bhuvi5344 ปีที่แล้ว

      Thank you sir, if u make complete programming on Array it will b very helpful.

  • @-AnimgiChandu
    @-AnimgiChandu 5 หลายเดือนก่อน

    Nice bro

  • @sakshamgupta5573
    @sakshamgupta5573 ปีที่แล้ว

    I wanted a String Builder Explanation with use of these question can you do this?

  • @ViSHNu_sk-7587-
    @ViSHNu_sk-7587- 11 หลายเดือนก่อน

    thankyouuuu😍

  • @oshadhaedirisinghe1455
    @oshadhaedirisinghe1455 11 หลายเดือนก่อน

    Thank you

  • @charudeshna1414
    @charudeshna1414 ปีที่แล้ว

    Thank you u made it clear!

  • @godoffirefire3620
    @godoffirefire3620 5 หลายเดือนก่อน

    Can we solve this question without using another array

  • @amsilentboy
    @amsilentboy ปีที่แล้ว

    public class Hello {
    public static void main(String args[]) {
    String a="Oye kya";
    int lent=a.length();
    for(int i=lent-1;i>=0;i--)
    {
    char c = a.charAt(i);
    System.out.print(c);
    }
    }
    }
    I feel this easiler 😅 and simple 🤪

    • @austintran451
      @austintran451 ปีที่แล้ว +1

      Neither his solution nor your solution is the most efficient. Using two pointers would be more efficient

  • @Idealbruda
    @Idealbruda 4 หลายเดือนก่อน +1

    Bro can't we just decrement the string by 1

    • @EDMisalive
      @EDMisalive 4 หลายเดือนก่อน

      yes there's a way search online. It'll prolly also have i- - in the last phase

  • @ttfannafan4989
    @ttfannafan4989 ปีที่แล้ว

    Bro upload string reverse using string builder and buffer please 👍

  • @marchymeow4584
    @marchymeow4584 7 หลายเดือนก่อน

    Thank you so much ❤