An open API service indexing awesome lists of open source software.

https://github.com/jfmonsa/dsa_fada

Data Structures and Algorithms repo: Implementation of Data Structures and Problems. (I love this <3)
https://github.com/jfmonsa/dsa_fada

computer-science dsa-algorithm dsa-practice

Last synced: 10 months ago
JSON representation

Data Structures and Algorithms repo: Implementation of Data Structures and Problems. (I love this <3)

Awesome Lists containing this project

README

          

## Organización del Proyecto

```
mi_repositorio/
├── data_structures_implementation/
│ ├── __init__.py
│ ├── stack.py
├── problems/
│ ├── __init__.py
│ ├── stacks/
│ │ ├── __init__.py
│ │ └── stack_problem.py
├── tests/
│ ├── __init__.py
│ ├── stacks/
│ │ ├── __init__.py
│ │
├── main.py
├── README.md
```

Ejecutar el script de la solución de un problema

```bash
python -m problems.stacks.math
```