Skip to content

Commit 27fe616

Browse files
committed
add sample input and sample output in the README.md
1 parent b39a537 commit 27fe616

File tree

2 files changed

+22
-16
lines changed

2 files changed

+22
-16
lines changed

.idea/workspace.xml

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

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,16 @@
66

77
### Problem Statement
88

9-
Write a program that counts duplicate characters from a given `String`.
9+
Write a program that counts duplicate characters from a given `String`.
10+
11+
### Sample Input 1
12+
13+
```
14+
"aabcc"
15+
```
16+
17+
### Sample Output 2
18+
19+
```
20+
{a=2, b=1, c=2}
21+
```

0 commit comments

Comments
 (0)