alexmojaki / alexmojaki/futurecoder
Handle duplicate functions in solution
オープン
- 主要言語
- Python
- スター
- 1.5k
- フォーク
- 183
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
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.
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
評価
この issue はまだ評価されていません。