Skip to content

Commit 8da26f8

Browse files
authored
Merge pull request #58 from pythonpe/advanced-algo-data
adding advanced data and algorithms in the roadmap
2 parents 6d30d5b + e19ccf3 commit 8da26f8

File tree

2 files changed

+51
-10
lines changed

2 files changed

+51
-10
lines changed

learning-path/python-developer.md

Lines changed: 50 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ digraph G {
9696
color="lightgreen",
9797
target="_top"];
9898
as2 [
99-
label="📗 Data Structures & Algorithms in Python*",
99+
label="📗 Data Structures & Algorithms \nin Python*",
100100
href="https://www.amazon.com/Structures-Algorithms-Python-Robert-Lafore/dp/013485568X/",
101101
color="lightgreen",
102102
target="_top"];
103103
as1 [
104-
label="📗 Algoritmos y Estructura de Datos con Python",
105-
href="https://www.amazon.com/Algoritmos-Estructuras-Datos-Python-cuestionarios-ebook/dp/B0CW6C19MD/",
104+
label="📝 Estructuras de datos: \nUna guía completa con ejemplos en Python",
105+
href="https://www.datacamp.com/es/tutorial/data-structures-guide-python",
106106
color="lightgreen",
107107
target="_top"];
108108
@@ -195,6 +195,53 @@ digraph G {
195195

196196
## Python Avanzado
197197

198+
### Estructura de datos y algoritmos avanzados
199+
Estos recursos proporcionan más detalle sobre estructura de datos y algoritmos, la mayoria de estos recursos se encuentran en inglés.
200+
201+
```{sketchviz}
202+
digraph G {
203+
graph [fontname="Handlee"];
204+
node [fontname="Handlee"];
205+
edge [fontname="Handlee"];
206+
rankdir=LR;
207+
208+
subgraph cluster_basic_python {
209+
node [style=filled, color=pink];
210+
style=filled;
211+
color=lightgrey;
212+
fontsize = 20;
213+
214+
215+
cc4 [
216+
label="‍💻 Advanced Data Structures \nwith Python*",
217+
href="https://github.com/bhavinjawade/Advanced-Data-Structures-with-Python",
218+
color="lightgreen",
219+
target="_top"];
220+
cc3 [
221+
label="📝 Basic Data Structures*",
222+
href="https://runestone.academy/ns/books/published/pythonds3/BasicDS/toctree.html",
223+
color="lightgreen",
224+
target="_top"];
225+
cc2 [
226+
label="📗 Grokking Algoritms*",
227+
href="https://www.manning.com/books/grokking-algorithms",
228+
color="lightgreen",
229+
target="_top"];
230+
cc1 [
231+
label="🎓 Algoritmos avanzados con Python",
232+
href="https://www.pypro.mx/app/curso/algoritmos-avanzados-con-python",
233+
color="lightgreen",
234+
target="_top"];
235+
236+
clean_code [label="Estructura de datos \ny algoritmos avanzados"];
237+
clean_code -> cc4;
238+
clean_code -> cc3;
239+
clean_code -> cc2;
240+
clean_code -> cc1;
241+
}
242+
}
243+
```
244+
198245
```{sketchviz}
199246
digraph G {
200247
graph [fontname="Handlee"];
@@ -224,18 +271,11 @@ digraph G {
224271
dp3 [label="Tópico 6", href="", color="lightgreen", target="_top"];
225272
dp2 [label="Tópico 5", href="", color="lightgreen", target="_top"];
226273
dp1 [label="Tópico 4", href="", color="lightgreen", target="_top"];
227-
aas3 [label="Tópico 3", href="", color="lightgreen", target="_top"];
228-
aas2 [label="Tópico 1", href="", color="lightgreen", target="_top"];
229-
aas1 [label="Tópico 1", href="", color="lightgreen", target="_top"];
230-
advanced_algostruct [label="Estructurad de Datos\ny\nAlgoritmos Avanzados"];
231274
design_patterns [label="Patrones de Diseño\nen Python"];
232275
command_line [label="Línea de Comandos\nen Python"];
233276
python_projects [label="Proyectos en Python"];
234277
db [label="Bases de Datos"];
235278
leetcode [label="Leetcode"];
236-
advanced_algostruct -> aas3;
237-
advanced_algostruct -> aas2;
238-
advanced_algostruct -> aas1;
239279
design_patterns -> dp3;
240280
design_patterns -> dp2;
241281
design_patterns -> dp1;

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ description = ""
55
authors = ["Ider Delzo <soloidx@gmail.com>", "Jean-Pierre Chauvel <jean.pierre@chauvel.org>"]
66
license = "Apache License, Version 2.0"
77
readme = "README.md"
8+
package-mode = false
89

910
[tool.poetry.dependencies]
1011
python = "^3.12"

0 commit comments

Comments
 (0)