alexmojaki / alexmojaki/futurecoder
Handle duplicate functions in solution
Đang mở
- Ngôn ngữ chính
- Python
- Star
- 1.5k
- Fork
- 183
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
Sometimes students define the required function twice, e.g:
```python
def double(x):
return x + x
def quadruple(x):
return double(double(x))
def quadruple(x):
return double(double(x))
```
This causes an error in the checker making it seem like something has gone wrong. Instead we should just tell the user to define the function only once.
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.