Find all non repeated character in string using stream API | java interview question | java 8

Поділитися
Вставка
  • Опубліковано 2 лис 2024

КОМЕНТАРІ • 1

  • @JavaconceptsbyJaytutorial
    @JavaconceptsbyJaytutorial  2 місяці тому

    Sometime u will get an interview question like; find first non repeated character in string:
    code:
    ✅String firstNonRepeatedCharacter = Stream.of(jd.split("")).filter(str -> jd.indexOf(str) == jd.lastIndexOf(str)).findFirst().get();