Skip to content

Commit

Permalink
personal directory archive
Browse files Browse the repository at this point in the history
  • Loading branch information
ddubbu-dev authored Aug 16, 2024
1 parent acde41f commit 9f59cd6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion update.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ def main():
if directory not in directories:
if directory in ["백준", "프로그래머스"]:
content += "## 📚 {}\n".format(directory)
elif directory in ["algorithm_practice", "baekjoon_utils", "data_structure", "utils"]:
# personal archive 예외처리
continue
else:
content += "### 🚀 {}\n".format(directory)
content += "| 문제번호 | 링크 |\n"
Expand All @@ -56,4 +59,4 @@ def main():
fd.write(content)

if __name__ == "__main__":
main()
main()

0 comments on commit 9f59cd6

Please sign in to comment.