Ascii values, typecasting . Java dsa course in Telugu | Part - 6 | Engineering Animuthyam

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 พ.ย. 2024

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

  • @Mca_Abbay
    @Mca_Abbay 3 หลายเดือนก่อน +58

    Bro nuvvu views and likes assalu pattinchukoku nee videos kosam wait chesevallam chala mande unnam .. so please continue the series...
    Sry views and likes antunna ani em anukoku but memu unnam ani chepthunna anthe ❤❤❤.
    Nee video okkariki use ayina chalu kada bro ..🙌 we always support u.🙇‍♂️

  • @Akhi09-d8d
    @Akhi09-d8d 10 วันที่ผ่านมา +4

    Supper bro
    I really like ur explanation and thanks for ur efforts and giving this videos for free . It will be very useful for many students around.
    Tq u bro❤❤❤

  • @devamshreddy-p4w
    @devamshreddy-p4w 3 หลายเดือนก่อน +12

    anna nuvvu thop evadu panikikuda raru i found gem person in my life explaination was vere level macha keep going on macha never stop posting videos..

  • @KINGDAVIDBONI-wl4mi
    @KINGDAVIDBONI-wl4mi 3 หลายเดือนก่อน +10

    Anna already DSA concept vachhina valla mu kuda chustunnam ... because become a Deep learner in DSA ...so please don't stop uploading the videos ❤❤

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

    super explanation thamudu, mi valla nenu first time leetcode problem solve chesanu ,thanks and i am 2018 passout batch......i am looking for best course and am always following your videos

  • @saikrishnamadhavnadipalli5557
    @saikrishnamadhavnadipalli5557 6 ชั่วโมงที่ผ่านมา

    class Main {
    public static void main(String[] args) {
    String s="hello";
    int count=0;
    for(int i=0;i

  • @CSKatt1108
    @CSKatt1108 14 วันที่ผ่านมา +1

    First time oka problem own ga think cheyagalgina , all thanks to you, you are making everything clear,
    meru epatiki ila help cheyal ani korukuntuna , Mi videos walane nak Coding meli meliga ostundi matchaaa❤❤ , Please don't stop making videos 🙇‍♀

  • @Radhika-q7v
    @Radhika-q7v 3 หลายเดือนก่อน +12

    class Solution {
    public int scoreOfString(String s) {
    int t=0;
    for(int i=0;i

  • @manasa_777
    @manasa_777 29 วันที่ผ่านมา +1

    Very good explanation bro,asalu time eh teliyatle video chustunte,
    Thank you is not enough 🙌

  • @Mr.Bean11
    @Mr.Bean11 3 หลายเดือนก่อน +7

    class HelloWorld {
    public static void main(String[] args) {
    String s="zaz";
    int sum=0;
    for(int i=0;i

  • @vijayanthony4760
    @vijayanthony4760 3 หลายเดือนก่อน +17

    Each day one video of engineering animuthyam keeps unemployment away. #dsa #java

  • @m.s.ssashank3461
    @m.s.ssashank3461 3 หลายเดือนก่อน +5

    free ga chptunnanduku tnx bro anthaku minchi emi chppagalamu❤

  • @merugujashwanth8033
    @merugujashwanth8033 24 วันที่ผ่านมา +1

    Broh.... Keep rocking broh.......... Waiting for your viedos.....❤❤

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

    Bro its very useful to solve the dsa problem.Tq bro🤝🥳u r efforts on teching topics was excellent.💯

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

    Bro, super bro ni classes , That we are going to make you PROUD for sure..❤

  • @theoverthinker8320
    @theoverthinker8320 3 หลายเดือนก่อน

    Machaaa.....chaalaa baga cheptunnavv!!! ni dagara vere a youtuber sariporuu...nuv next level antheyy

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

    Bro leetcode lo problem submit chestunte aah feel ee heaven bro 😊

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

    Macha super explanation macha 🎉🎉🎉

  • @TechnicalGyani786
    @TechnicalGyani786 5 วันที่ผ่านมา

    tried Macha :
    class Solution {
    public int scoreOfString(String s) {
    char []a= s.toCharArray();
    int res = 0;
    for(int i=0;i

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

    you are the person sending by god at right time,your explanation vere level,i am 2023 passedout only one request is try to complete this playlist as early as possible becuase year gap is increasing ,may i know when will this completed because in one day i am able to complete 5 videos due to interest by teaching.

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

    ini=[]
    for i in range(len(s)-1):
    b=ord(s[i])-ord(s[i+1])
    c=abs(b)
    ini.append(c)
    return sum(ini)

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

    ascii
    int ans = 'b';
    int an = 'a';
    System.out.println(ans - an);
    ouput: 1

  • @NadipallileelaNadipallil-xy9oz
    @NadipallileelaNadipallil-xy9oz 18 วันที่ผ่านมา

    nee videos chala bagunayi bro really good

  • @vishnusmart360
    @vishnusmart360 2 หลายเดือนก่อน +9

    class Solution {
    public int scoreOfString(String s) {
    int sum = 0;
    for (int i = 0; i < s.length() - 1; i++) {
    int diff = Math.abs(s.charAt(i + 1) - s.charAt(i));
    sum += diff;
    }
    return sum;
    }
    } my logic . THANKS MACHA LOVE FROM KMIT 💗💗

  • @sravanthikalyanam
    @sravanthikalyanam 3 หลายเดือนก่อน

    super bro chela easy ga artham avvutundi ne way of explanation❣super
    tq you

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

    n=String.length();
    Int add=0;
    For(int I=0;I

  • @King-gs5df
    @King-gs5df 3 หลายเดือนก่อน +2

    class HelloWorld {
    public static void main(String[] args) {
    String str = "hello";
    int sum = 0;
    for(int i=0; i

  • @NadipallileelaNadipallil-xy9oz
    @NadipallileelaNadipallil-xy9oz 18 วันที่ผ่านมา

    chala baga ardam avutunayi broo

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

    int a=' a';
    int b='b';
    c=a-b;
    System.out.println(c);

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

    Best explanation ever 👏
    Btw happy teachers day bruh

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

    anna nuvvu super anna chala baga ardam ayala chappavu thank u so much e series elene continue chey plz stop cheyaku anna

  • @Akhi09-d8d
    @Akhi09-d8d 10 วันที่ผ่านมา +2

    public int scoreOfString(String s)
    {
    int score =0;
    for(int i=0 ;i

  • @photos1-f7p
    @photos1-f7p หลายเดือนก่อน +1

    Thank you so much 🎉

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

    Super Explanation bro💗💗

  • @saikrishnamadhavnadipalli5557
    @saikrishnamadhavnadipalli5557 6 ชั่วโมงที่ผ่านมา

    class Main {
    public static void main(String[] args) {
    String s="madhav";
    int count=0;
    for(int i=0;i

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

    fantastic explanation brooooooo

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

    Hi anna ee free course chala bagundhii 🛐❤️
    Nenu 1st yr anna
    Nak computer lo zero knowledge undhi
    Asal em start cheyalo ardham kavatledhu emaina guide chesthava pls anna🙂oka vdo dheni meedha cheyi anna btech 4yrs ela plan cheskovali ani scratch nunchi
    Thank you🥹

  • @WORK-HARD-jm4cg
    @WORK-HARD-jm4cg 3 หลายเดือนก่อน

    class Solution:
    def scoreOfString(self, s: str) -> int:
    score=0
    for i in range(len(s)-1):
    score=score+abs(ord(s[i])-ord(s[i+1]))

    return score . python lo kuda chesa bro . present nenu ml and data science chesthunna so python use chesa

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

    really u r teaching the topics smoothly in a simple way... impressed with the teaching..but i'm facing a problem while building the logic due to lack of knowledge that when to use, how to use and where to use the methods like length method in string..

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

      @@himabindubontha4066 haa next rep video lo 3 more problems solve chedham so ala chesthu unte logic improve avthundhi

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

      @@engineeringanimuthyam sure..thank you for the boost up👍

  • @SWD_tech11
    @SWD_tech11 3 หลายเดือนก่อน

    Int n='a';
    Int n='b';
    Int dif=a-b;
    System.out.println(dif);

  • @manish67380
    @manish67380 3 หลายเดือนก่อน +25

    Macha daily 2 videos upload chey epudu nenu 4-1 so please

    • @m_jashwanth_0046
      @m_jashwanth_0046 3 หลายเดือนก่อน +2

      Same bro nenu kuda plz 2 videos upload cheyu

    • @BenGhostFreak
      @BenGhostFreak 3 หลายเดือนก่อน +6

      Bro 4th yr lo unte.. Ila videos chustu time waster avtadi.. best option is to do self learn from websites like w3 schools, and start Leetcode on own

    • @merugujashwanth8033
      @merugujashwanth8033 24 วันที่ผ่านมา

      Same hear broh......plzzzz make it fast maccha.......😢

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

    class Solution {
    public static int scoreOfString(String s) {
    int array[]=new int[100];
    for(int i=0;i

  • @Chintapakdamdam-e3d
    @Chintapakdamdam-e3d 3 หลายเดือนก่อน

    class Solution {
    public int scoreOfString(String s) {
    int temp = 0;
    for(int i=1;i

  • @kunkanurumadhavi-s5l
    @kunkanurumadhavi-s5l 3 หลายเดือนก่อน

    Anna literally saying ur teaching skills are superb.asalu time teliyatledhu anna

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

    Int s='b';
    Int p='a';
    Int r=s-p;
    System .out .println(r);

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

    Anna motham questions anni cover cheye anna interview plus neeku vunna motham knowledge its very helpful annaaaaaaaaa....

  • @lavan1119
    @lavan1119 3 หลายเดือนก่อน +2

    class Solution {
    public int scoreOfString(String s) {
    int sum =0;
    for(int i =0;i

    • @lavan1119
      @lavan1119 3 หลายเดือนก่อน

      maccha idhi na approach but memory ekkuva tesukuntundhi

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

      Emle bro efficient approach ae

  • @vinayalle-m2p
    @vinayalle-m2p 3 หลายเดือนก่อน

    char a='a';
    char b='b';
    int res=(int)(b)-(int)(a);
    System.out.print(res);

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

    Super explaination bro ❤😊

  • @venkatramareddymallidi5143
    @venkatramareddymallidi5143 3 หลายเดือนก่อน

    int ans=0;
    for(int i=0;i

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

    class Test {
    public static void main(String[] args) {
    String s="DON";
    int sum=0;
    for(int i=0;i

  • @katlaAkash
    @katlaAkash 3 หลายเดือนก่อน

    class LCp1 {
    public static void main( String []args){
    String s ="hello";

    int temp ,add=0;

    for(int i=0;i

  • @devaraivishwanath2137
    @devaraivishwanath2137 3 หลายเดือนก่อน

    int a = 'a';
    int b = 'b';
    System.out.println(a-b);

  • @saikrishnamadhavnadipalli5557
    @saikrishnamadhavnadipalli5557 3 หลายเดือนก่อน +7

    class Solution {
    public static void main(String[] arg) {
    String s="hello";
    int count=0;
    for(int i=0;i

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

    artham ayindi raja

  • @NandiniKona-u1b
    @NandiniKona-u1b 3 หลายเดือนก่อน

    class HelloWorld
    {
    public static void main(String[] args)
    {
    String a="hello";
    int score=0,temp;
    for(int i=0;i

  • @G-d7h
    @G-d7h 2 หลายเดือนก่อน

    class Solution {
    public int scoreOfString(String s) {
    int temp=0;
    int result =0;
    for (int i=0; i

  • @NadipallileelaNadipallil-xy9oz
    @NadipallileelaNadipallil-xy9oz 18 วันที่ผ่านมา

    class leela{
    public static void main(String args[ ])
    {
    int l = 'a';
    int m='b';
    int n=m-l;
    System.out.println(n);
    }
    }

  • @RameshCharym
    @RameshCharym 3 หลายเดือนก่อน

    mundhe vachindhi macha
    class Solution {
    public int scoreOfString(String s) {
    int a;
    int b;
    int c=0;
    int t=0;
    for(int i=0;i

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

    int m = 'a';
    int n = 'b';
    int diff = n - m;

  • @NithishReddy-l5z
    @NithishReddy-l5z 2 หลายเดือนก่อน

    class Solution {
    public int scoreOfString(String s) {
    int w = 0;
    int sum = 0;
    for(int i=0;i

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

    class Solution {
    public int scoreOfString(String s) {
    int sum=0;
    for(int i=0;i

  • @ammureddy211
    @ammureddy211 19 วันที่ผ่านมา

    class Solution {
    public int scoreOfString(String s) {

    int count=0;
    for(int i=0;i

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

    class Solution {
    public int scoreOfString(String s) {
    char[] ch=s.toCharArray();
    int ans=0;
    for(int i=0;i

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

    class Solution {
    public static void main(String[] args) {
    String S="Hello";
    int dif=0;
    for (int i=0;i

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

    Hi bro..daily concepts tho paatu oka leetcode code problem solve chesi post chey bro pls. Maak kuda koncham use avtundhi🙏🏼🙏🏼🙏🏼

  • @madhukiran1050
    @madhukiran1050 3 หลายเดือนก่อน

    Great explanation

  • @Annamalai-t2l
    @Annamalai-t2l 3 หลายเดือนก่อน

    public class AsciiValue {
    public static void main(String[] args) {
    int a = 'a';
    int b = 'b';
    int c = 'a'-'b';
    System.out.println(c);
    }
    }

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

    public class Main
    {
    public static void main(String[] args) {
    String a="hello";
    int count=0;
    for(int i=0; i

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

    class Main{
    public static void main(String[] args){
    int n='a';
    int n2='b';
    int res=n2-n;
    System.out.println(res);
    }
    }

  • @k.viswanath1805
    @k.viswanath1805 3 หลายเดือนก่อน

    public int scoreOfString(String s) {
    int sum=0;
    for(int i=0;ii;j--){
    int n=Math.abs(s.charAt(i)-s.charAt(j));
    sum=sum+n;
    }
    }
    return sum;

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

    class HelloWorld {
    public static void main(String[] args) {
    int a='a';
    int b='b';
    System.out.println(b-a);
    }
    }

  • @sureshduddupudi7834
    @sureshduddupudi7834 5 วันที่ผ่านมา

    Tq Macha❤

  • @m_jashwanth_0046
    @m_jashwanth_0046 3 หลายเดือนก่อน +2

    Frnds manamu andaramu taluchukunte e channel ki 100k subscribes tevachu so andariki share cheyandi.naku telisi idi kuda future lo oka strive dsa sheet laga avutundi

    • @engineeringanimuthyam
      @engineeringanimuthyam  3 หลายเดือนก่อน +2

      Thankyou macha 🥹

    • @m_jashwanth_0046
      @m_jashwanth_0046 3 หลายเดือนก่อน

      @@engineeringanimuthyam yes bro ne efforts ki cumpulsory worth untadi future lo.so plz keep doing videos 📷

  • @SS_GAMING_ZONE_FF
    @SS_GAMING_ZONE_FF 3 หลายเดือนก่อน

    Anna thankyou so much for hardwork 🎉🎉😢😢

  • @praveenbusiraju8917
    @praveenbusiraju8917 20 วันที่ผ่านมา

    super

  • @powerstar_AB
    @powerstar_AB 3 หลายเดือนก่อน

    Class bunny {
    Public static void main(String args[ ] ){
    Int n = 'a' ;
    Int m = ' b' ;
    Int c = m - n;
    System.out.println(c);
    }
    }
    O/p : 1

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

    class HelloWorld {
    public static void main(String[] args) {
    String c="hello";
    int d=0;
    for(int i=0;i

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

    class Animuthyam {
    public static void main(String[] args) {
    int ch='b';
    int c='a';
    System.out.println(ch-c);
    }
    }

  • @musinimurali2602
    @musinimurali2602 3 หลายเดือนก่อน +4

    public class Main {
    public static void main(String[] args) {
    String s="hello";

    int c1='h';
    int c2='e';
    int c3='l';
    int c4='l';
    int c5='o';
    int ans=Math.abs((c1-c2))+Math.abs((c2-c3))+Math.abs((c3-c4))+
    Math.abs((c4-c5));
    System.out.println("ans is:"+Math.abs(ans));

    }
    }

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

    Here's the solution -
    public int scoreOfString(String s) {
    char ch[] = s.toCharArray();
    int ans = 0;

    for(int i=0;i

  • @SATYANARAYANAKOTA-gn1gw
    @SATYANARAYANAKOTA-gn1gw หลายเดือนก่อน

    import java.lang.Math;
    class Solution {
    public int scoreOfString(String s) {
    int x=0;
    for(int i=0;i

  • @BalarajuM-pd3yx
    @BalarajuM-pd3yx 3 หลายเดือนก่อน +4

    Macha🔥🔥🔥🔥

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

    class Solution {
    public int scoreOfString(String s) {
    int temp = 0;
    for(int i=0;i

  • @RAHULJAMANA-h8j
    @RAHULJAMANA-h8j 2 หลายเดือนก่อน

    class HelloWorld {
    public static void rahul( int b,String f){
    // System.out.println(b);
    for(int i=0;i

  • @santhikumar-em8ts
    @santhikumar-em8ts 2 หลายเดือนก่อน

    char[] chars=s.toCharArray();
    int result=0;
    for(int i=0;i

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

    import java.util.Scanner;
    import java.lang.Math;
    class Solution {
    public static int scoreOfString(String s) {
    int temp=0,ab=0;
    for(int i=0;i

  • @devendernath6462
    @devendernath6462 3 หลายเดือนก่อน

    class HelloWorld {
    public static void main(String[] args) {
    int n ='b';
    int s ='a';
    System.out.println(n-s);
    }
    }

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

  • @RathodVamshi-b5t
    @RathodVamshi-b5t 3 หลายเดือนก่อน

    class Solution {
    public int scoreOfString(String s) {
    int i,sum=0;
    for(i=0;i

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

    class HelloWorld {
    public static void main(String[] args) {
    int k ='a';
    int c='b';
    int d=c-k;
    System.out.println(d);
    }
    }

  • @vinodmandan-d3h
    @vinodmandan-d3h 2 หลายเดือนก่อน

    class HelloWorld {
    public static void main(String[] args) {
    int A = 'b';
    int B ='a';
    int C = A-B;
    System.out.println(C);

    }
    }

  • @Sweety-o7f
    @Sweety-o7f 3 หลายเดือนก่อน

    literally so nice .

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

    Mi patience ki🫡

  • @alochinchi.cheptha
    @alochinchi.cheptha 2 หลายเดือนก่อน

    import java.lang.*;
    class ascii{
    public static void main(String[] args){
    int n='b'-'a';
    System.out.println(n);
    }
    }

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

    import java.util.Scanner;
    class Main {
    public static void main(String[] args) {
    int sum=0;
    Scanner sc = new Scanner(System.in);
    String s = sc.nextLine();
    for(int i = 1 ;i

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

    System.out.println ('b'); rasinappudu adhi 98 ani endhuku print cheyyale
    I mean System.out.println ('b' - 'a'); rasinappudu adhi characters ni ascii values ga marchukoni Mari 1 ani output isthundhi.
    But second case lo endhuku adhi string ga teeskoni b print chesindhi.

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

    class HelloWorld {
    public static int find(String input)
    {

    //hello

    int sum=0;

    for (int i=0;i

  • @Funnyreacts07
    @Funnyreacts07 3 หลายเดือนก่อน

    package Strings.strings_B;
    import java.util.*;
    public class ScoreOfString {
    public static int check(String s){
    int temp =0;
    for(int i =0; i

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

    🙌