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

TP0 - Niveles de indentación #1

Open
mbuchwald opened this issue Sep 24, 2024 · 0 comments
Open

TP0 - Niveles de indentación #1

mbuchwald opened this issue Sep 24, 2024 · 0 comments

Comments

@mbuchwald
Copy link
Contributor

En general, lo mejor es dejar el código principal en el nivel principal de indentación. Un caso de error común temprano de esto es Maximo en el TP0.
En este caso, en vez de tener:

func Maximo(arr []int) int {
    if len(arr) > 0 {
        // .. codigo principal 
    } else {
        return -1
    }
}

Es mejor hacer un early return, que es lo más usual especialmente para validaciones, o casos base (para el caso de algoritmos recursivos). En este caso:

func Maximo(arr []int) int {
    if len(arr) == 0 {
        return -1
    }
    // código principal
}
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

No branches or pull requests

1 participant