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

GH-180: Big O in General #188

Merged
merged 34 commits into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
update
  • Loading branch information
rain1024 committed Mar 13, 2023
commit 1e2fc46470da28fed6033d1cd1f72fd4a17de2b2
1 change: 1 addition & 0 deletions readme/cpp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hi hi
1 change: 1 addition & 0 deletions readme/csharp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hi hi
1 change: 1 addition & 0 deletions readme/java/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hi hi
1 change: 1 addition & 0 deletions readme/javascript/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hi hi
1 change: 1 addition & 0 deletions readme/nodejs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hi hi
1 change: 1 addition & 0 deletions readme/php/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hi hi
1 change: 1 addition & 0 deletions readme/typescript/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hi hi
23 changes: 17 additions & 6 deletions tools/make_docs.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
import os
from os.path import join, dirname, abspath

# read concepts_data.yaml

import yaml

cwd = dirname(abspath(__file__))
workspace_dir = dirname(cwd)
readme_dir = join(workspace_dir, 'readme')
readme_dir = join(workspace_dir, "readme")

data = yaml.safe_load(open(join(cwd, 'concepts_data.yaml')))
data = yaml.safe_load(open(join(cwd, "concepts_data.yaml")))
print(data)

# write file in readme_dir
programming_languages = ['abstract', 'python']
programming_languages = [
"abstract",
"javascript",
"python",
"java",
"nodejs",
"typescript",
"csharp",
"cpp",
"php",
]
for programing_language in programming_languages:
with open(join(readme_dir, programing_language, 'README.md'), 'w') as f:
content = 'hi hi'
f.write(content)
with open(join(readme_dir, programing_language, "README.md"), "w") as f:
content = "hi hi"
f.write(content)