Skip to content

Instantly share code, notes, and snippets.

View alejoriosm04's full-sized avatar
💻
Creating the future of tech

Alejandro Ríos Muñoz alejoriosm04

💻
Creating the future of tech
View GitHub Profile
@alejoriosm04
alejoriosm04 / binaryTree.py
Created October 27, 2022 02:25
Python script to test the behavior of a binary tree
"""
Test the behavior of a binary tree
Written in Python by Alejandro Ríos
For the course "Data Structures and Algorithms I" at EAFIT University
- Links the functions and classes of binaryTree.py with your main file
- Prints your Binary Tree in the console
- Create a Binary Tree from scratch and see the output from your modifications
@ludwigtuerme
ludwigtuerme / RecursiveSmallestInteger2DArray.java
Last active November 6, 2022 17:14
Recursively find smallest integer in 2D array (Java). Disclaimer: This program does not really make sense.
/**
* Find the smallest integer in a 2D array.
* This program does not really make sense.
*
* @author Luis M. Torres-Villegas
* @version 2022.11.05
*/
public class RecursiveSmallestInteger2DArray {
public static void main(String args[]) {