Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ddubbu-dev committed Aug 16, 2024
2 parents 5ce83f5 + 5786de4 commit 5827add
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
12 changes: 0 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,6 @@

프로그래머스의 경우, 푼 문제 목록에 대한 마이그레이션이 필요합니다.

### 🚀 algorithm_practice
| 문제번호 | 링크 |
| ----- | ----- |
|sort|[링크](./algorithm_practice/sort/shell_sort.py)|
### 🚀 baekjoon_utils
| 문제번호 | 링크 |
| ----- | ----- |
|read_file|[링크](./baekjoon_utils/read_file/output.txt)|
### 🚀 data_structure
| 문제번호 | 링크 |
| ----- | ----- |
|binary_tree|[링크](./data_structure/binary_tree/%EB%A6%AC%EC%8A%A4%ED%8A%B8%EB%A1%9C_%EA%B5%AC%ED%98%84_%EC%8B%A4%ED%8C%A8.py)|
## 📚 백준
### 🚀 Bronze
| 문제번호 | 링크 |
Expand Down
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 5827add

Please sign in to comment.