View Single Post
Old 05-24-2022, 10:16 PM   #7
quantumleap
Registered User
 
Join Date: Jan 2016
Location: Hyderabad
Posts: 4,286
How to find duplicate characters In A Webpages..?

JAVA :-
  • public class DuplicateCharacters {
  • public static void main(String[] args) {
  • String string1 = "Great responsibility";
  • int count;
  • //Converts given string into character array.
  • char string[] = string1.toCharArray();
  • System.out.println("Duplicate characters in a given string: ");
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
quantumleap is offline   Reply With Quote