alexmojaki / alexmojaki/futurecoder

Handle duplicate functions in solution

オープン
#425 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
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 はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。