We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, in this exercise, this solution passed the tests:
procedure DibujarLineaRoja3() { Mover(Norte) repeat(2) { Poner(Rojo) Mover(Este) } Poner(Rojo) VolverAtras() }
The text was updated successfully, but these errors were encountered:
The solution that shows Gus passes but that's not correct because this is the solution that should pass:
procedure DibujarLineaRoja3(){ repeat(2){ Poner(Rojo) Mover(Este) } Poner(Rojo) VolverAtras() } procedure DibujarLineaAzul3(){ repeat(2){ Poner(Azul) Mover(Este) } Poner(Azul) VolverAtras() }
In fact, this solution also pass and it's incorrect because of the Mover(Norte) of the last code line:
Mover(Norte)
procedure DibujarLineaRoja3(){ repeat(2){ Poner(Rojo) Mover(Este) } Poner(Rojo) VolverAtras() } procedure DibujarLineaAzul3(){ repeat(2){ Poner(Azul) Mover(Este) } Poner(Azul) VolverAtras() Mover(Norte) }
Sorry, something went wrong.
No branches or pull requests
For example, in this exercise, this solution passed the tests:
The text was updated successfully, but these errors were encountered: