Java interview program to find duplicate elements in an array in Tamil|

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

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

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

    Very clear explain akka👏

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

    Super akka.. Keep going..

  • @Leelarani-rh1ym
    @Leelarani-rh1ym ปีที่แล้ว

    Very clear explanation 😍

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

    thank you, clearly understood

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

    Super madam....
    Best teaching....
    ❤❤❤

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

    Here is the corrected code:
    ```
    public class FindElementArray {
    public static void main(String[] args) {
    int a[] = {3, 4, 4, 3, 5, 5};
    for (int i = 0; i < a.length; i++) {
    for (int j = i + 1; j < a.length; j++) {
    if (a[i] == a[j]) {
    System.out.println(a[i]);
    break; // add break to avoid duplicate prints
    }
    }
    }
    }
    }
    ```
    This code will print each duplicate element only once.

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

    Array and loop videos uploaded akka it's my request

  • @Mansoor-sx6zq
    @Mansoor-sx6zq 7 หลายเดือนก่อน

    But this code I run error came

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

    this code does not work , if a number is repeated for more than 2 times, if you define a code it must be solve for all the test cases, not for your own input, if i code this in my interview, then i will not get the job, because it does not run all the testcases, i can easily search another video, but for the first time, i see the template, ican trust this video can give me the correct answer, but it is a time waste thing for me and the 2.5 k view since today(3/9/24).