Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add traversal notebook (BFS + DFS) #118

Open
wants to merge 40 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
ab2700b
Standardize
20kavishs Mar 24, 2023
30b54ee
Update sudoku.md
20kavishs Mar 24, 2023
2b9b75d
Changed links back to old form
20kavishs Mar 24, 2023
be1bc45
change versions back to original
20kavishs Mar 24, 2023
fc017a2
add back ipykernel
20kavishs Mar 26, 2023
5ed2872
clean up, make pre-commit happy
MridulS Mar 31, 2023
e8b11d8
Merge branch 'main' into improveConsistency
MridulS Mar 31, 2023
dff5fab
make pre-commit happy
MridulS Mar 31, 2023
de75f82
Fix typo.
rossbar Apr 9, 2023
28e89c4
Rm unnecessary warnings filter.
rossbar Apr 9, 2023
8ba46f3
Fix footnote format.
rossbar Apr 9, 2023
4ecf27e
Condense heading.
rossbar Apr 9, 2023
6cc9a46
More canonical way to create DiGraph.
rossbar Apr 9, 2023
41de46e
Condense headings.
rossbar Apr 9, 2023
e0169a8
Fix header level in flow.
rossbar Apr 9, 2023
0fb7a96
Typo.
rossbar Apr 9, 2023
e12e528
Fix heading level.
rossbar Apr 9, 2023
66ec90c
More heading fixes.
rossbar Apr 9, 2023
64eaf96
Resolved suggestions
20kavishs Apr 17, 2023
d02c17e
Merge branch 'main' into improveConsistency
MridulS Apr 18, 2023
f2c7877
created traversal notebook draft 1
20kavishs Jul 31, 2023
3fdf8b5
added to index and to requirements
20kavishs Jul 31, 2023
c1f21e2
Update requirements.txt
20kavishs Jul 31, 2023
e0c88e8
fix formatting
20kavishs Aug 19, 2023
fd1f94a
Update requirements.txt
20kavishs Aug 19, 2023
0cb59a8
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
8281282
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
1366042
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
ff4cd25
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
73ab6c7
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
2defd7c
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
2062446
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
35360d2
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
d2b1568
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
70130c8
Update content/algorithms/traversal/index.md
20kavishs Aug 26, 2023
1dbb9ed
try getting notebooks tested on this branch
dschult Aug 27, 2023
06554ed
Merge branch 'main' into add-traversal-notebook
dschult Aug 27, 2023
d75efd0
fix typo in linting
dschult Aug 27, 2023
2319504
Merge branch 'main' into add-traversal-notebook
rossbar Aug 28, 2023
9a98824
fix merge induced typo
dschult Aug 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
- name: Lint with precommit
run: |
pip install pre-commit
find content/ -name "*.md" -exec jupytext --to notebook {} \;
# pre-commit wants files to be staged
find content/ -name "*.ipynb" -exec git add {} \;
pre-commit run --all-files --show-diff-on-failure --color always

- name: Test with nbval
Expand Down
1 change: 1 addition & 0 deletions content/algorithms/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ flow/dinitz_alg
lca/LCA
euler/euler
isomorphism/isomorphism
traversal/index
```
Loading