fix(curriculum): typo in shortest path algorithm step 12 (#59766)

Co-authored-by: Alkram Dhib <akramdhib999@gmail.com>
This commit is contained in:
akremdh1
2025-04-16 15:43:05 +01:00
committed by GitHub
parent 155deb608a
commit 1dfb290cab
@@ -7,7 +7,7 @@ dashedName: step-12
# --description--
As you can see from the output, `.items()` creates a data structures that stores each key-value pair in a distinct tuple. To iterate over the elements in those tuples you can add a second loop variable:
As you can see from the output, `.items()` creates a data structure that stores each key-value pair in a distinct tuple. To iterate over the elements in those tuples you can add a second loop variable:
```py
for i, j in dict.items():