Skip to content
New issue

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

Eliminación de redundancias en verificación de límites de grillas #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

AugustoNicola
Copy link

En la función CalculateCardinals, reemplacé el uso de las variables row o column cuando valen 0 por su propio valor correspondiente, ya que si tienen ese valor no es necesario volver a usarlas. Por tanto, lineas como:

E = array[row][column + 1]; // siendo ambas 0

... pasan a ser:

E = array[0][1];

Considero que esto aumenta la legibilidad al no necesitar ir y volver al leer el uso de las variables, pero es una opinión personal 😄

También hay algunas mejoras menores en los comentarios de esta sección de verificación, y un pequeño bugfix de indentación 👍🏻

@vercel
Copy link

vercel bot commented Aug 4, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/alonso-pablo/game-of-life/Autt7ccXq3g14WBrisG94zZoedzA
✅ Preview: https://game-of-life-git-fork-augustonicola-main-alonso-pablo.vercel.app

@AugustoNicola AugustoNicola changed the title 🔧 Eliminación de redundancias en verificación de límites de grillas Eliminación de redundancias en verificación de límites de grillas Aug 4, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant