Skip to content

Commit aad2c3c

Browse files
authored
Update Day 3.md
1 parent 2759fa8 commit aad2c3c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Status/Day 3.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,17 @@ word = sorted(list(set(input().split()))) # input string splits ->
6464
print(" ".join(word))
6565
```
6666

67-
**OR**
67+
---
68+
```python
69+
'''Solution by: Sukanya-Mahapatra
70+
'''
6871
inp_string = input("Enter string: ").split()
6972
out_string = []
7073
for words in inp_string:
7174
if words not in out_string:
7275
out_string.append(words)
7376
print(" ".join(sorted(out_string)))
74-
77+
```
7578
---
7679

7780
# Question 11

0 commit comments

Comments
 (0)