-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update oop-exercise.mdx #22
base: master
Are you sure you want to change the base?
Conversation
OOP Exercise ahora en español
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure | ||
dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non | ||
proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
Este ejercicio es bastante similar a lo que encontrarías en un [Ejercicio Algorítmico](algorithmic-exercise) con la excepción de que este también se centrará en tus habilidades para modelar el problema utilizando programación orientada a objetos, y en la mayoría de los casos, el problema a resolver será un poco más sencillo que los presentados en un Ejercicio Algorítmico. El tiempo que se te dará para este ejercicio será de alrededor de 30 minutos a 1 hora. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ejercicio de Algoritmia
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure | ||
dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non | ||
proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
Este ejercicio es bastante similar a lo que encontrarías en un [Ejercicio Algorítmico](algorithmic-exercise) con la excepción de que este también se centrará en tus habilidades para modelar el problema utilizando programación orientada a objetos, y en la mayoría de los casos, el problema a resolver será un poco más sencillo que los presentados en un Ejercicio Algorítmico. El tiempo que se te dará para este ejercicio será de alrededor de 30 minutos a 1 hora. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment as above
Node root = new InternalNode(new InternalNode(new LeafNode(1), new InternalNode(new LeafNode(2), null)), new LeafNode(3)); | ||
printValuesInBTree(root); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing ```
} | ||
|
||
Consejos generales para tener éxito en el Ejercicio de Diseño Orientado a Objetos: | ||
- Sigue el diagrama de flujo y los consejos presentados en Ejercicio Algorítmico durante la entrevista. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
en el ejercicio de algoritmia
OOP Exercise ahora en español