alexmojaki / alexmojaki/futurecoder
Handle duplicate functions in solution
Abierto
- Lenguaje dominante
- Python
- Estrellas
- 1.5k
- Forks
- 183
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.