Skip to content

Commit fd3f0ef

Browse files
authored
Merge branch 'main' into minjeong3
2 parents ecafd29 + abe4f73 commit fd3f0ef

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

β€Ž.github/workflows/update_challenge_progress.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
cd _MonthlyChallenges
3838
git config --global user.name "${{ secrets.GIT_USER_NAME }}"
3939
git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
40+
git pull origin main --rebase --autostash
4041
git add scoreboard.json DASHBOARD.md HISTORY.md
4142
git commit -m "Update challenge progress dashboard" || echo "No changes to commit"
42-
git pull origin main
4343
git push origin ${{ github.head_ref }}
4444
4545
- name: Post PR Comment with progress

β€ŽHongjoo/λ°±μ€€/λ‘œλ΄‡μ‘°μ’…ν•˜κΈ°.pyβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""
2-
https://www.acmicpc.net/problem/1520
2+
https://www.acmicpc.net/problem/1520
33
"""
4-
54
import sys
65
input = sys.stdin.readline
6+
77
#0. λ§΅ (N,M) μΉΈ 별 탐사 κ°€μΉ˜ μ„€μ •
88
N , M = map(int,input().split()) # y,x
99
fields =list()
@@ -16,7 +16,7 @@
1616
right2left = [[0 for _ in range(M)] for k in range(N)]
1717
#3.탐색 κ°€λŠ₯ (1)left2 right <-/ (2) right2left <-
1818

19-
# n == 0 경우 : (1) left2right 경둜만 쑴재(λˆ„μ κ°’)
19+
# n == 0 경우 : (1) left2right 경둜만 쑴재(λˆ„μ κ°’)
2020
for m in range(M) :
2121
dp[0][m] = dp[0][m-1] + fields[0][m]
2222
# 2번쨰 ν–‰ λΆ€ν„° μ§„ν–‰

β€Ž_MonthlyChallenges/DASHBOARD.mdβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@
66
| Mingguriguri | DP | 6 | βœ… |
77
| zaqquum | κ·Έλž˜ν”„ | 0 | ❌ |
88
| zaqquum | DP | 2 | ❌ |
9+
| learntosurf | κ·Έλž˜ν”„ | 2 | ❌ |
10+
| learntosurf | DP | 3 | ❌ |

β€Ž_MonthlyChallenges/scoreboard.jsonβ€Ž

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,21 @@
2929
"κ·Έλž˜ν”„": false,
3030
"DP": false
3131
}
32+
},
33+
"learntosurf": {
34+
"κ·Έλž˜ν”„": [
35+
10026,
36+
4963
37+
],
38+
"DP": [
39+
14430,
40+
2342,
41+
2293
42+
],
43+
"achieved": {
44+
"κ·Έλž˜ν”„": false,
45+
"DP": false
46+
}
3247
}
3348
}
3449
}

β€Žlearntosurf/test_commit.mdβ€Ž

Whitespace-only changes.

0 commit comments

Comments
Β (0)