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

Daily questions identified and sorted by official dates and commit dates. #2

Merged
merged 4 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ QUESTIONS_PATH_FROM_README = my-submissions/
README_PATH = ../
QUESTION_DATA_PATH = question_data/ # Official leetcode info on each question including
SUBMODULE_DATA_PATH = question_data/question_data/data/
DAILIES_FOLDER = dailies_weeklies/ # Daily challenge markdown files are stored here
# submodule path + this
DAILIES_FILE = dailies_s.json
WEEKLIES_FILE = weeklies_s.json

LEETCODE_QUESTION_DETAILS = leetcode.pkl # name, AC rate, difficulty, topics, etc.

USER_DATA_PATH = user_data/ # Times of when code files were modified are stored
Expand All @@ -38,5 +43,6 @@ TOPIC_MARKDOWN_PATH_IN_MARKDOWNS_FOLDER = by_topic/
LISTS_LOCATION = Lists/



# PRIMARY_LANGUAGES=py,java,c
# PRIMARY_LANGUAGES=py,java,c,cpp,sql
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ runs:
# cd .readme_updater

# # Present for testing branch -- unused
# git fetch origin testing2
# git checkout testing2
# git fetch origin daily-by-official-dates
# git checkout daily-by-official-dates

# # Make sure current branch is the main live branch
# git fetch origin main
# git checkout main

# echo "Initializing and updating submodules in case checkout resulted in uninitializations..."
# git submodule update --init --recursive
# git submodule update --recursive --remote
echo "Initializing and updating submodules in case checkout resulted in uninitializations..."
git submodule update --init --recursive
git submodule update --recursive --remote
# cd ../


Expand Down
Loading