Skip to content

Commit

Permalink
reorg and add code for second edition
Browse files Browse the repository at this point in the history
  • Loading branch information
egonSchiele committed Aug 9, 2023
1 parent 9306432 commit 933acaf
Show file tree
Hide file tree
Showing 89 changed files with 18 additions and 117 deletions.

This file was deleted.

This file was deleted.

18 changes: 18 additions & 0 deletions 07_trees/python/01_filesystem_dfs.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from os import listdir
from os.path import isfile, join


def printnames(dir):
# loop through every file and folder in the current folder
for file in sorted(listdir(dir)):
fullpath = join(dir, file)
if isfile(fullpath):
# if it is a file, print out the name
print(file)
else:
# if it is a folder, call this function recursively on it
# to look for files and folders
printnames(fullpath)


printnames("pics")
23 changes: 0 additions & 23 deletions 08_greedy_algorithms/csharp/01_set_covering/.vscode/launch.json

This file was deleted.

16 changes: 0 additions & 16 deletions 08_greedy_algorithms/csharp/01_set_covering/.vscode/tasks.json

This file was deleted.

This file was deleted.

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 933acaf

Please sign in to comment.