How to Find Duplicate Words in a String in Java | Coding Skills

Поделиться
HTML-код
  • Опубликовано: 1 фев 2025
  • НаукаНаука

Комментарии • 9

  • @CodingSkills
    @CodingSkills  Год назад

    Please like the video and share it with your friends, also Subscribe to the channel 😊.
    If you are having any question, please share it in the comment section below.
    Thank You

  • @sakhiletibhanu845
    @sakhiletibhanu845 11 месяцев назад +1

    Super explanation sir

  • @samahmahdi5511
    @samahmahdi5511 5 месяцев назад

    Thanks a lot

  • @kingajable
    @kingajable 10 месяцев назад +1

    What if string have no space and we need to find duplicate like ex : asdanddjfkcuandinrlcjand from this string we need to find and

    • @Kids_Songs_45
      @Kids_Songs_45 10 месяцев назад +1

      Just we change string into char array iterate from 0 to last index and comparing every char with each other

    • @CodingSkills
      @CodingSkills  10 месяцев назад +1

      Sorry for the delay, I have made the below video for you based on above comment. Please check.
      i.e
      ruclips.net/video/aD5Cq_j0iL8/видео.html (How to Find Duplicate Characters in a String)

    • @kingajable
      @kingajable 10 месяцев назад

      @@CodingSkills Thank you for this duplicate character find program.
      My question is i need to find duplicate word like example "howareyouajaycomehomeajay" find "ajay" count. How many time "ajay" present in string.