Arrays strings leetcode problems | Java dsa course in Telugu | Part - 7 | Engineering Animuthyam

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

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

  • @vinayachanta9623
    @vinayachanta9623 23 วันที่ผ่านมา +4

    I am really happy because I solved my first leetcode problem without watching any video Thank you so much for your motivation

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

    Without seeing solution solve chesa anna🙂 100.0% beats 🎉
    public int numJewelsInStones(String jewels, String stones){
    int count =0;
    for(int i=0;i

  • @chandana-i1s
    @chandana-i1s 3 หลายเดือนก่อน +20

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int X=0;
    for (int i=0;i

  • @Krishna-kp7oz
    @Krishna-kp7oz 19 วันที่ผ่านมา +1

    Thank you Macha😢 I did it! After you explaining the question in note pad without waiting for your answer and before you showed the answer 🙏🏼

  • @charishmatammana407
    @charishmatammana407 7 วันที่ผ่านมา

    thanks your explanation is just wow...I have solve without seeing
    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int x = 0;
    for (int i = 0; i < operations.length; i++) {
    if (operations[i].equals("--X") || operations[i].equals("X--")) {
    x = x - 1;
    } else {
    x = x + 1;
    }
    }
    return x;
    }
    }

  • @AnushaCh-br6qh
    @AnushaCh-br6qh 2 หลายเดือนก่อน +4

    bro wonderful explanation i think this is the best platform to crack MNC companies

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

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

  • @Haripriya-cq8kd
    @Haripriya-cq8kd 3 หลายเดือนก่อน +3

    Because of you now i am interested in coding tq u broo☺

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

    int sol = 0;
    for(int i=0;i

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

    Anna after seeing your video i can solve leetcode problem easily

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

    super machaa thankxx for ur efforts

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

    Defanging an ip address can be solved in this way:
    class Solution {
    public String defangIPaddr(String address) {
    return address.replaceAll("\\.", "[.]");
    }
    }
    And one more request anna: Try to add thumbnails of that topic so it will help

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

    Bro last problems so funny bro jowels and stones problem nuvvu dimands ani alla cheptuntey fun ga undi last problem and so intresting laso ❤anyway bro you nailed it 😍🥰

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

    solved 1st leetcode on my own feels so goodd boommmmmmm

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

    Bro super ga cheptunnaru bro.. keep going..🤩😍🥰

  • @bhuvandevarshetty1708
    @bhuvandevarshetty1708 วันที่ผ่านมา

    100 beats......
    String jowels="abA";
    String stones = "aAAbBbb";
    int count = 0;
    for(int i = 0; i

  • @KorrapatiDivya
    @KorrapatiDivya 23 วันที่ผ่านมา +2

    super Anna 😊

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

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

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

    #2
    public static String defangIPaddr(String address) {
    String a = address.replace(".", "[.]");
    return a;
    }

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

    First problem vachindi own ga macha :
    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int X = 0;
    String postincrement = "X++";
    String predecrement = "--X";
    String postdecrement = "X--";
    String preincrement = "++X";
    for (int i = 0; i < operations.length; i++) {
    if (operations[i].equals(preincrement) || operations[i].equals(postincrement)) {
    X = X + 1;
    } else {
    X = X - 1;
    }
    }
    return X; // Removed Math.abs(X) because the value of `X` can be negative in this context.
    }
    }

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

    class Solution{
    public static void main(String[] args) {
    String jewels="aA";
    String stones="aAAbbbb";
    int ans=0;
    for(int i=0;i

    • @bunny.vaidya4128
      @bunny.vaidya4128 3 หลายเดือนก่อน

      this code is more simple and easier than the code in the tutorial

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

      @@bunny.vaidya4128 its not efficient

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

    Very interesting bro , kanisam leetcode ante teliyanu Naku yekanga problems cheyyipisthunnav super.bro chinna homework la questions ivvu bro practice cheyyadaniki baguntundi

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

    Thanks anna present i am 1 year and beggining stage naku chala confusion undedhi but i got a hope that i will crack a expected package of mine ❤❤

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int output=0;
    for(int i=0;i

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

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int sum=0;
    for (String operation : operations) sum += operation.contains("++") ? 1 : -1;
    return sum;
    }
    }

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int sum = 0;
    int jewlss=0;
    for(int k=0; k

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

    nice explanation

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

    Try to upload 2 video per day guru.... 😢

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

      Yes bro try to upload 2 videos cause for us placements are near by..

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

    Bro dsa last varuku chey bro
    It helps a lot❤🎉

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

    super macha

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

    class Solution(object):
    def finalValueAfterOperations(self, operations):
    x=0
    for i in operations:
    if i=='++X' or i=='X++':
    x=x+1
    else:
    x=x-1
    return x

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

    last problem did on own :
    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int count =0;
    for(int i=0;i

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

    1st code:
    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int temp = 0;
    for(int i =0; i< operations.length ; i++){
    if ((operations[i].equals("++X")) || (operations[i].equals("X++"))){
    temp++;
    }
    else{
    temp--;
    }

    }
    return temp;
    }
    }

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

    class Solution(object):
    def numJewelsInStones(self, jewels, stones):
    count=0
    for i in stones:
    if i in jewels:
    count=count+1
    return count

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

    class HelloWorld {
    public static void main(String[] args) {
    String jewels = "aA";
    String stones = "aAbbbb";
    int ans = 0;
    for(int i=0;i

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

    Thank you so much anna❤❤

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

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

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int count =0;
    for(int i=0;i

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

    class Solution {
    public String defangIPaddr(String address) {
    String temp = "";
    for (int i = 0; i

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

    anna thank u so much anna chala baga chappavu thank u so much anna

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

    class StringOperations {
    public static void main(String[] args) {
    String[] operations={"x++","++x","x--","--x"};
    int x=0;
    for(int i=0;i

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int ston =0;
    for (int i=0;i

  • @saivamsy2275
    @saivamsy2275 26 วันที่ผ่านมา

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int x = 0;
    for(int i=0;i

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

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int ans = 0;
    int n= operations.length;
    for(int i=0; i

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

    Great Explanation

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

    Good brother keep going
    Mr. Consistent🎉

  • @NavyaThaduri-r9l
    @NavyaThaduri-r9l 10 วันที่ผ่านมา +1

    class Solution {
    public String defangIPaddr(String address) {
    String ans = "";
    for(int i=0;i

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

    class Solution {
    public String defangIPaddr(String address) {
    for(int i=0;i

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

    Question: 771 i.e. 3rd Question in this video.
    Leetcode Beats 100.0%
    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int count = 0;
    for(int i=0; i < jewels.length();i++){
    char c1 = jewels.charAt(i);
    for(int j=0; j < stones.length();j++){
    char c2 = stones.charAt(j);
    if(c1 == c2){
    count = count + 1;
    }
    }
    }
    return count;
    }
    }

  • @-ANGE-nf6sw1
    @-ANGE-nf6sw1 3 หลายเดือนก่อน +3

    I cannot wait for 6 more hours 😅

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

    class stonesandjewels {
    public static void main(String[] args) {
    int count=0;
    String jewels="z";
    String stones="ZZ";
    int n =stones.length();
    for(int a=0;a

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

    class HelloWorld
    {
    public static void main(String[] args)
    {
    String stones="zazbb",jewels="zj";
    int count=0;
    char c1,c2;
    for(int i=0;i

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

    Bro jewels and stones problem own ga solve chesanu

  • @PLasyapriya
    @PLasyapriya 27 วันที่ผ่านมา

    slove chesina anna 1st prblm before ur saying

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

    class Solution:
    def numJewelsInStones(self, jewels: str, stones: str) -> int:
    a = 0
    for j in range(len(jewels)):
    for i in range(len(stones)):
    if stones[i] == jewels[j]:
    a+=1
    return a

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int a=0;
    for(int i=0;i

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

      it is ok but using two for loops it increase time complexity.

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

    class XYZ {
    public int numJewelsInStones(String jewels, String stones) {
    int ans =0;
    for(int i = 0;i

  • @AnanthsaiGudla-t4d
    @AnanthsaiGudla-t4d 3 หลายเดือนก่อน

    Macha munde vachesindi
    class Solution(object):
    def finalValueAfterOperations(self, operations):
    """
    :type operations: List[str]
    :rtype: int
    """
    x = 0
    for op in operations:
    if "++" in op:
    x += 1
    elif "--" in op:
    x -= 1
    return x

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

    class Solution(object):
    def defangIPaddr(self, address):
    a=''
    for i in address:
    if i=='.':
    a=a+'[.]'
    else:
    a=a+i
    return a

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

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int x=0;
    for(int i=0;i

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

    Edhe oputho rojuki oka 5 videos pettu bro chala help avthadi. Please consider this. requesting you man🙏

  • @madhusudhan192
    @madhusudhan192 8 วันที่ผ่านมา

    with using replace function anna:
    class Solution {
    public String defangIPaddr(String address) {
    return address.replace(".","[.]");
    }
    }

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int count=0;
    for(int i=0;i

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

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int ans=0;
    for(int i=0;i

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

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int x=0;
    for(int i=0;i

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

    //optimized code//
    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int count=0;
    for(int i=0;i

  • @SamalaBharathReddy-p5i
    @SamalaBharathReddy-p5i 3 หลายเดือนก่อน

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {;
    int ans=0;
    for(int i=0;i

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

    class Solution {
    public String defangIPaddr(String address) {
    String leela=address.replace(".","[.]");
    return leela;
    }
    }

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

    class HelloWorld {
    public static void main(String[] args) {
    String jewels="aA";
    String stones="aAAbbbb";
    int count=0;
    for (int i=0;i

  • @sharanyadevunuri3368
    @sharanyadevunuri3368 6 วันที่ผ่านมา

    class Solution {
    String ans="";
    public String defangIPaddr(String address) {
    if(address.contains(".")){
    String v= address.replace(".","[.]");
    ans=ans+v;
    }
    return ans;
    }
    }

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {

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

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int count = 0;
    for (int i=0;i< jewels.length();i++){
    char a = jewels.charAt(i);
    for(int j=0; j< stones.length(); j++){
    char b = stones.charAt(j);
    if (a == b){
    count ++;
    }
    }
    }
    return count;

    }
    }

  • @rajiv-tech4782
    @rajiv-tech4782 3 หลายเดือนก่อน

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int X=0;
    for(int i=0;i

  • @telugu_chitkalu
    @telugu_chitkalu 23 วันที่ผ่านมา

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int ans = 0;
    for(int i = 0; i

  • @KarthikNaga-b2i
    @KarthikNaga-b2i 3 หลายเดือนก่อน

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int ans=0;
    for(int i=0;i

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

    package leetcode;
    import java.util.Scanner;
    public class Jewels {
    public int numJewelsInStones(String jewels, String stones) {
    int count =0;
    for(int i=0;i

  • @Shiva.Sareddy
    @Shiva.Sareddy 3 หลายเดือนก่อน

    Question: 2011 i.e. 1st Question in this video.
    Leetcode Beats 76.95%
    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int X = 0;
    for (int i = 0; i < operations.length; i++){
    System.out.println(operations[i]);
    if(operations[i].equals("--X")){
    X = X - 1;
    }
    else if(operations[i].equals("X--")){
    X = X - 1;
    }
    else if(operations[i].equals("X++")){
    X = X + 1;
    }
    else if(operations[i].equals("++X")){
    X = X + 1;
    }
    }
    return X;
    }
    }

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

    Understand Bro

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

    Thanks verymuch anna

  • @Shiva.Sareddy
    @Shiva.Sareddy 3 หลายเดือนก่อน +3

    Question: 1108 i.e. 2nd Question in this video.
    Leetcode Beats 100.0%
    class Solution {
    public String defangIPaddr(String address) {
    String res = address.replace(".","[.]");
    return res;
    }
    }

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones)
    {

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

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

    class Solution {
    public String defangIPaddr(String address) {
    String ans=address.replace(".","[.]");
    return ans;
    }
    }

  • @ADITYA-so2vc
    @ADITYA-so2vc 2 หลายเดือนก่อน

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int ans=0;
    for(int i=0;i

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

    class Solution {
    public int numJewelsInStones(String jewels, String stones) {
    int c=0;

    for(int j=0;j

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

    class Solution {
    public String defangIPaddr(String address){
    return address.replace("." , "[.]");
    }
    }

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

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int n=operations.length;
    int a=0;
    //char[] arr=operations.tocharArray
    for(int i=0;i

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

    class HelloWorld {
    public static void main(String[] args) {
    for(int i=2;i

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

    class HelloWorld {
    public static void main(String[] args){
    String []list = {"--X","X++","X++"};
    int output = 0;
    for(int i = 0;i

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

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

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

    Bro Java online complier lo user inputs thisukoni next leetcode lo cheppandi bro

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

    class Solution {
    public String defangIPaddr(String address) {
    String result="";
    for(int i=0;i

  • @Priyanka-yo4ic
    @Priyanka-yo4ic หลายเดือนก่อน

    class Solution {
    public String defangIPaddr(String address) {
    address = address.replace(".","[.]");
    return address;

    }
    }

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

    Bro 😮🙏ne chaneel first time chusa No words ur teaching
    I have dout Bro
    I'm cmplt recently passed
    Bcom computers with 0 skills
    But i have boost confidence after watching ur videos
    naku gud package vunha job ravli anta
    Dsa with java chalu na bro or parrel ga inka em anaa nercunKnta best
    Dsa with java vera language anta em suggest cesthavhu bro nuvu??
    Plz reply
    Big thanks for ur teaching...🙏

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

      I will suggest you DSA with c++

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

      Incase nuvu web dev or android dev side velali ankunte dsa with java cheyu bro along with development. Incase aiml or datascience side velthe dsa with python cheyu bro . All the best

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

      ​@@engineeringanimuthyamthank youuuuuu Bro...❤

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

    class HelloWorld {
    public static void main(String[] args) {
    String s= "aA";
    String M="aAAbbb";
    int ans= 0;
    for(int i=0;i

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

    1. class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int X=0;
    int temp=0;
    for(int i=0;i

  • @shaikwasim2332
    @shaikwasim2332 25 วันที่ผ่านมา +2

    Bro Naku Java Konchem ae vacchu bro ee videos lo nerchukovacha

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

    class HelloWorld {
    public static void main(String[] args) {
    String ans="";
    String S="1.6.0.1";
    for (int i=0;i

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

    Hello, Bro One Suggestion From My Side.., Yemiti antey Every Problem ki Constraints Yeela Work Chestheya Chussi Cheppu Bro, Please Make a One Video on it, Basically.., Constraints Medha Algorithm Depend Ayyi Vuntadi kada Bro,,, Please make one Video On it Bro... This is My Request

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

    thank you soo much bro

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

    class Solution {
    public int finalValueAfterOperations(String[] operations) {
    int X=0;
    for(int i=0;i