Skip to content

Commit 03eb638

Browse files
authored
Update Day 1.md
1 parent 4ebc728 commit 03eb638

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Status/Day 1.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ print fact(x)
7979
```
8080
* **Using Lambda Function**
8181
```python
82+
# Solution by: harshraj22
83+
8284
n = int(input())
8385
def shortFact(x): return x if x is 1 else x*shortFact(x-1)
8486
print(shortFact(n))
@@ -136,4 +138,4 @@ print(ans)
136138

137139

138140

139-
[***Discussion***](https://github.com/darkprinx/100-plus-Python-programming-exercises-extended/issues/3)
141+
[***Discussion***](https://github.com/darkprinx/100-plus-Python-programming-exercises-extended/issues/3)

0 commit comments

Comments
 (0)