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)
- Host: GitHub
- URL: https://github.com/jfmonsa/dsa_fada
- Owner: jfmonsa
- Created: 2023-11-02T04:40:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-22T15:20:41.000Z (about 1 year ago)
- Last Synced: 2025-05-22T16:54:08.372Z (about 1 year ago)
- Topics: computer-science, dsa-algorithm, dsa-practice
- Language: Python
- Homepage:
- Size: 281 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```