alexmojaki / alexmojaki/futurecoder

Handle duplicate functions in solution

Đang mở
#425 0 bình luận 0 reaction 0 người được giao Xem trên GitHub
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á.

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.