Spotting Unique Characters in a String | JAVA INTERVIEW QUESTIONS

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

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

  • @mohammadsuhail1371
    @mohammadsuhail1371 ปีที่แล้ว +6

    Thanks for teaching, there is another simplest way of doing this using enhanced for loop here it is
    String name = "india";
    String unique = "";
    char[] charArray = name.toCharArray();
    for (char c : charArray) {
    if (name.indexOf(c) == name.lastIndexOf(c)) {
    unique += c;
    }
    }
    System.out.println(unique);

  • @RecepDEMİRCİ-q3p
    @RecepDEMİRCİ-q3p ปีที่แล้ว +2

    thanks again King...

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

    can you please write program which will print first non repeated character?

  • @a.jkiomarz1429
    @a.jkiomarz1429 ปีที่แล้ว +2

    Love it! Perfectoooo

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

    Perfect!!!