Skip to content

Commit

Permalink
[Bronze V] Title: 개, Time: 40 ms, Memory: 31120 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
srlee056 committed Mar 28, 2024
1 parent d91afca commit d7d8bad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/commit_to_issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ jobs:
done
# Use gh issue list and grep to find an issue by title
# existing_issue=$(gh issue list --repo "$GITHUB_REPOSITORY" | grep "$problem_title" | awk '{print $1}')
existing_issue=$(gh issue list --repo "$GITHUB_REPOSITORY" | awk -v title="$problem_title" '$0 ~ title {print $1}')
existing_issue=$(gh issue list --repo "$GITHUB_REPOSITORY" | grep -w "$problem_title" | awk '{print $1}')
if [[ ! -z "$existing_issue" ]]; then
echo "Issue already exists with title: $problem_title, Issue Number: $existing_issue"
Expand Down
2 changes: 1 addition & 1 deletion 백준/Bronze/10172. 개/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
구현

### 제출 일자

-
2024년 3월 28일 21:30:52

### 문제 설명
Expand Down
2 changes: 1 addition & 1 deletion 백준/Bronze/10172. 개/개.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
print("|q p| /}")
print("( 0 )\"\"\"\\")
print("|\"^\"` |")
print("||_/=\\\\__|")
print("||_/=\\\\__|") #

0 comments on commit d7d8bad

Please sign in to comment.