X Tutup
Skip to content

Commit 83d6539

Browse files
author
Devansh K Shukla
committed
add the solution code for the required problem statement.
1 parent 2313dc6 commit 83d6539

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.idea/workspace.xml

Lines changed: 14 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/io/github/dbc/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public class Main {
44
public static void main(String[] args) {
55
DuplicateCharactersCounter counter = new DuplicateCharactersCounter();
6-
var duplicateCharacters = counter.countDuplicateCharacters("abcdefghijklmnopqrstuvwxyz");
6+
var duplicateCharacters = counter.countDuplicateCharacters("aabcc");
77
System.out.println(duplicateCharacters);
88
}
99
}

0 commit comments

Comments
 (0)
X Tutup