Skip to content

Commit 7514be2

Browse files
authored
Update Day 1.md
1 parent 49c6ab7 commit 7514be2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Status/Day 1.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,14 @@ for item in range(num+1):
194194
print(dictio)
195195
```
196196
---
197+
```python
198+
'''Solution by:
199+
'''
197200

201+
num = int(input("Number: "))
202+
print(dict(list(enumerate((i * i for i in range(num+1))))))
203+
```
204+
---
198205
## Conclusion
199206

200207
**_These was the solved problems of day 1. The above problems are very easy for the basic syntex learners.I have shown some easy ways of coding in my solutions. Lets see how to face and attack new problems in the next day._**

0 commit comments

Comments
 (0)