Skip to content

Commit fca9aff

Browse files
fix merge leftovers
1 parent 73550f9 commit fca9aff

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Status/Day 1.md

-10
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,7 @@ print ','.join(l)
2727
---
2828

2929
**My Solution: Python 3**
30-
<<<<<<< HEAD
31-
=======
32-
3330
- **Using for loops**
34-
> > > > > > > 100-plus-Python-programming-exercises-extended/master
3531

3632
```python
3733
for i in range(2000,3201):
@@ -41,17 +37,11 @@ print("\b")
4137
```
4238

4339
---
44-
45-
# <<<<<<< HEAD
46-
4740
- **Using generators and list comprehension**
4841

4942
```python
5043
print(*(i for i in range(2000, 3201) if i%7 == 0 and i%5 != 0), sep=",")
5144
```
52-
53-
> > > > > > > 100-plus-Python-programming-exercises-extended/master
54-
5545
# Question 2
5646

5747
### **Question:**

0 commit comments

Comments
 (0)