Skip to content

Commit

Permalink
problem statement commented in the code
Browse files Browse the repository at this point in the history
  • Loading branch information
nitish312 committed Mar 30, 2023
1 parent dd87da0 commit 0d18e58
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion UniqueCharacters.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,18 @@ public static void main(String[] args){
System.out.println(temp);
sc.close();
}
}
}

/*
Problem Statement
Write a Java program to print the unique characters present in the given string in the same sequence as they appear(the first occurrence) in the input.
Note:
All the characters should be in lowercase only.
i/p ->
xperience
o/p ->
xperinc
*/

0 comments on commit 0d18e58

Please sign in to comment.