Skip to content

Commit 38d671c

Browse files
authored
I added my solution.
I added my solution.
1 parent 54c7851 commit 38d671c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Status/Day_22.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,14 @@ for letter in range(ord('a'),ord('z')+1): # ord() gets the ascii value of a c
6464
if cnt > 0:
6565
print("{},{}".format(letter,cnt))
6666
```
67-
67+
```python Solution by Utkarsh4697
68+
s = 'abcdefgabc'
69+
for i in sorted(set(s)):
70+
print(f'{i}, {s.count(i)}')
71+
```
6872
---
6973

74+
7075
# Question 91
7176

7277
### **Question**

0 commit comments

Comments
 (0)