From de89484383f6a0fe66d8bef565b50ff2d3537479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 10 May 2023 22:21:53 +0900 Subject: [PATCH 01/15] =?UTF-8?q?#17=20:=202579=5F=EA=B3=84=EB=8B=A8=20?= =?UTF-8?q?=EC=98=A4=EB=A5=B4=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #17 : Week4_예원이티 --- ...250 \354\230\244\353\245\264\352\270\260.py" | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/2579_\352\263\204\353\213\250 \354\230\244\353\245\264\352\270\260.py" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/2579_\352\263\204\353\213\250 \354\230\244\353\245\264\352\270\260.py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/2579_\352\263\204\353\213\250 \354\230\244\353\245\264\352\270\260.py" new file mode 100644 index 0000000..8e8175d --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/2579_\352\263\204\353\213\250 \354\230\244\353\245\264\352\270\260.py" @@ -0,0 +1,17 @@ +import sys +input = sys.stdin.readline + +n = int(input()) +score = [] +dp = [] + +for _ in range(n): + score.append(int(input())) + +dp[0] = score[0] +dp[1] = score[0] + score[1] +dp[2] = max(score[0] + score[2], score[1] + score[2]) +for i in range(3, n): + dp[i] = max(score[i] + dp[i-2], score[i] + score[i-1] + dp[i-3]) + +print(dp[n-1]) From dbfc98d59f8438d902f8b697d5f70ee9ec867b45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 17 May 2023 19:59:08 +0900 Subject: [PATCH 02/15] =?UTF-8?q?#21=20:=202606=5F=EB=B0=94=EC=9D=B4?= =?UTF-8?q?=EB=9F=AC=EC=8A=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #21 : Week5_예원이티 --- ...24\354\235\264\353\237\254\354\212\244.py" | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/2606_\353\260\224\354\235\264\353\237\254\354\212\244.py" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/2606_\353\260\224\354\235\264\353\237\254\354\212\244.py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/2606_\353\260\224\354\235\264\353\237\254\354\212\244.py" new file mode 100644 index 0000000..7c0c54a --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/2606_\353\260\224\354\235\264\353\237\254\354\212\244.py" @@ -0,0 +1,24 @@ +from collections import deque + +computer = int(input()) +v = int(input()) +graph = [[] for i in range(computer+1)] +visited = [0]*(computer+1) + +for i in range(v): + a, b = map(int, input().split()) + graph[a] += [b] + graph[b] += [a] + + +visited[1] = 1 +Q = deque([1]) + +while Q: + c = Q.popleft() + for nx in graph[c]: + if visited[nx]==0: + Q.append(nx) + visited[nx]=1 + +print(sum(visited)-1) From ba5c64a293119a16c0ae8c525716f8352017f8b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 17 May 2023 20:09:47 +0900 Subject: [PATCH 03/15] =?UTF-8?q?#21=20:=202606=5F=EB=B0=94=EC=9D=B4?= =?UTF-8?q?=EB=9F=AC=EC=8A=A4=5FDFS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #21 : Week5_예원이티 --- ...54\235\264\353\237\254\354\212\244_DFS.py" | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/2606_\353\260\224\354\235\264\353\237\254\354\212\244_DFS.py" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/2606_\353\260\224\354\235\264\353\237\254\354\212\244_DFS.py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/2606_\353\260\224\354\235\264\353\237\254\354\212\244_DFS.py" new file mode 100644 index 0000000..3adef27 --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/2606_\353\260\224\354\235\264\353\237\254\354\212\244_DFS.py" @@ -0,0 +1,21 @@ +#DFS + +computer=int(input()) +v=int(input()) + +graph = [[] for i in range(computer+1)] +visited=[0]*(computer+1) + +for i in range(v): + a,b=map(int,input().split()) + graph[a]+=[b] + graph[b]+=[a] + +def dfs(v): + visited[v]=1 + for nx in graph[v]: + if visited[nx]==0: + dfs(nx) + +dfs(1) +print(sum(visited)-1) From e368dacd5bf0cc3395f8f1d3d649909d4014837c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 24 May 2023 22:06:13 +0900 Subject: [PATCH 04/15] =?UTF-8?q?#26=20:=2010026=5F=EC=A0=81=EB=A1=9D?= =?UTF-8?q?=EC=83=89=EC=95=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #26 : Week6_예원이티 --- ...01\353\241\235\354\203\211\354\225\275.py" | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/10026_\354\240\201\353\241\235\354\203\211\354\225\275.py" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/10026_\354\240\201\353\241\235\354\203\211\354\225\275.py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/10026_\354\240\201\353\241\235\354\203\211\354\225\275.py" new file mode 100644 index 0000000..2cd39c7 --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/10026_\354\240\201\353\241\235\354\203\211\354\225\275.py" @@ -0,0 +1,51 @@ +from collections import deque + +def BFS(x,y): + q.append((x,y)) + dx = [-1,0,1,0] + dy = [0,1,0,-1] + visited[x][y] = 1 + while q: + x, y = q.popleft() + for d in range(4): + nx = x + dx[d] + ny = y + dy[d] + + # 범위 안에 있고 + # 같은 색이고 + # 방문 안한 경우 + if 0<=nx Date: Wed, 24 May 2023 22:10:54 +0900 Subject: [PATCH 05/15] =?UTF-8?q?#26=20:=2015723=5Fn=EB=8B=A8=20=EB=85=BC?= =?UTF-8?q?=EB=B2=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #26 : Week6_예원이티 --- ...n\353\213\250 \353\205\274\353\262\225.py" | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/15723_n\353\213\250 \353\205\274\353\262\225.py" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/15723_n\353\213\250 \353\205\274\353\262\225.py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/15723_n\353\213\250 \353\205\274\353\262\225.py" new file mode 100644 index 0000000..2cd6cd1 --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/15723_n\353\213\250 \353\205\274\353\262\225.py" @@ -0,0 +1,22 @@ +n = int(input()) +dist = [[1e9 for i in range(26)] for i in range(26)] +for i in range(n): + inList = input().split() + start = ord(inList[0]) - ord('a') + end = ord(inList[2]) - ord('a') + dist[start][end] = 1 + +for k in range(26): + for i in range(26): + for j in range(26): + dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j]) + +m = int(input()) +for i in range(m): + inList = input().split() + start = ord(inList[0]) - ord('a') + end = ord(inList[2]) - ord('a') + if dist[start][end] < 1e9: + print('T') + else: + print('F') From c567650a2ffd652bac9dfd166a4edd55885249e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 31 May 2023 21:55:12 +0900 Subject: [PATCH 06/15] =?UTF-8?q?#31=20:=201931=5F=ED=9A=8C=EC=9D=98?= =?UTF-8?q?=EC=8B=A4=20=EB=B0=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #31 : Week7_예원이니 --- ...\230\354\213\244 \353\260\260\354\240\225" | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225" "b/\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225" new file mode 100644 index 0000000..9c8e5c1 --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225" @@ -0,0 +1,21 @@ +N = int(input()) +time = [] + + +for i in range(N): + start, end = map(int, input().split()) + time.append([start, end]) + + +time = sorted(time, key = lambda a : a[0]) +time = sorted(time, key = lambda a : a[1]) + +finish = 0 +cnt = 0 + +for start, end in time: + if start >= finish: + cnt += 1 + finish = end + +print(cnt) From 7b996b8b4121aa55510012f100b193e2f9271d2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 31 May 2023 21:56:48 +0900 Subject: [PATCH 07/15] =?UTF-8?q?#31=20:=201654=5F=EB=9E=9C=EC=84=A0=20?= =?UTF-8?q?=EC=9E=90=EB=A5=B4=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #31 : Week7_예원이티 --- ...0 \354\236\220\353\245\264\352\270\260.py" | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/1654_\353\236\234\354\204\240 \354\236\220\353\245\264\352\270\260.py" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/1654_\353\236\234\354\204\240 \354\236\220\353\245\264\352\270\260.py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/1654_\353\236\234\354\204\240 \354\236\220\353\245\264\352\270\260.py" new file mode 100644 index 0000000..382aa3f --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/1654_\353\236\234\354\204\240 \354\236\220\353\245\264\352\270\260.py" @@ -0,0 +1,25 @@ +import sys +input = sys.stdin.readline + +K, N = map(int, input().split()) +lan = [int(input()) for _ in range(K)] +end = max(lan) + +def lan_length(n): + count = 0 + for item in lan: + count += item // n + return count + +def program(start, end, N): + if start > end: + return end + + mid = (start + end) // 2 + length = lan_length(mid) + if length >= N: + return program(mid+1, end, N) + else: + return program(start, mid-1, N) + +print(program(1, end, N)) From 164a90c5e09b64c4bb9326fbf7ac29098874d028 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 31 May 2023 21:57:25 +0900 Subject: [PATCH 08/15] =?UTF-8?q?Delete=201931=5F=ED=9A=8C=EC=9D=98?= =?UTF-8?q?=EC=8B=A4=20=EB=B0=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\230\354\213\244 \353\260\260\354\240\225" | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225" "b/\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225" deleted file mode 100644 index 9c8e5c1..0000000 --- "a/\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225" +++ /dev/null @@ -1,21 +0,0 @@ -N = int(input()) -time = [] - - -for i in range(N): - start, end = map(int, input().split()) - time.append([start, end]) - - -time = sorted(time, key = lambda a : a[0]) -time = sorted(time, key = lambda a : a[1]) - -finish = 0 -cnt = 0 - -for start, end in time: - if start >= finish: - cnt += 1 - finish = end - -print(cnt) From b41f46d57c57e8c38d070fa63d43fd67fb1128c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 31 May 2023 21:58:13 +0900 Subject: [PATCH 09/15] =?UTF-8?q?#31=20:=201931=5F=ED=9A=8C=EC=9D=98?= =?UTF-8?q?=EC=8B=A4=20=EB=B0=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #31 : Week_예원이티 --- ...0\354\213\244 \353\260\260\354\240\225.py" | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225.py" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225.py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225.py" new file mode 100644 index 0000000..9c8e5c1 --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/1931_\355\232\214\354\235\230\354\213\244 \353\260\260\354\240\225.py" @@ -0,0 +1,21 @@ +N = int(input()) +time = [] + + +for i in range(N): + start, end = map(int, input().split()) + time.append([start, end]) + + +time = sorted(time, key = lambda a : a[0]) +time = sorted(time, key = lambda a : a[1]) + +finish = 0 +cnt = 0 + +for start, end in time: + if start >= finish: + cnt += 1 + finish = end + +print(cnt) From ab2fe8dae7f6f0143d4fd5f29cf6ad0e48ff4d23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 14 Jun 2023 20:56:01 +0900 Subject: [PATCH 10/15] =?UTF-8?q?#34=20:=2015651=5FN=EA=B3=BC=20M=20(3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #34 : Week8_예원이티 --- .../15651_N\352\263\274 M (3).py" | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/15651_N\352\263\274 M (3).py" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/15651_N\352\263\274 M (3).py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/15651_N\352\263\274 M (3).py" new file mode 100644 index 0000000..a27789e --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/15651_N\352\263\274 M (3).py" @@ -0,0 +1,20 @@ +import sys +input = sys.stdin.readline + +N, M = map(int, input().split()) +arr = [0 for _ in range(M)] +# arr : 입력 받은 M개의 숫자가 차례로 담기는 리스트 + +# dfs(cnt) : 숫자를 cnt개 선택한 상태에서 arr[cnt]를 고르는 함수 +def dfs(cnt): + if cnt == M: # 재귀함수 dfs(cnt) 종료 조건 + print(' '.join(map(str, arr))) + return + + # cnt != m 인 경우, + # 숫자를 더 선택해야 함 + for i in range(1, N + 1): # 1 부터 n까지의 숫자를 이번 칸에 한번씩 넣어 줌 + arr[cnt] = i + dfs(cnt+1) # 다음 칸 숫자를 선택하는 다음 깊이 탐색 호츌 + +dfs(0) From eabba5334b841e67ae3edb7b97f85367731b83d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Wed, 14 Jun 2023 21:37:58 +0900 Subject: [PATCH 11/15] =?UTF-8?q?#34=20:=202839=5F=EC=84=A4=ED=83=95=20?= =?UTF-8?q?=EB=B0=B0=EB=8B=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #34 : Week8_예원이티 --- ...4\355\203\225 \353\260\260\353\213\254.py" | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 "\354\235\264\355\213\260\354\230\210\354\233\220/2839_\354\204\244\355\203\225 \353\260\260\353\213\254.py" diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/2839_\354\204\244\355\203\225 \353\260\260\353\213\254.py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/2839_\354\204\244\355\203\225 \353\260\260\353\213\254.py" new file mode 100644 index 0000000..2bedec3 --- /dev/null +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/2839_\354\204\244\355\203\225 \353\260\260\353\213\254.py" @@ -0,0 +1,24 @@ +N = int(input()) +bag = 0 + +while N >= 0: + + # 봉지 수를 최소로 만들기 위해서 + # 5kg 봉지 수를 최대로 + # 3kg 봉지 수를 최소로 만들어야 함 + + # 5의 배수인 경우 + if N % 5 == 0: + bag += int(N // 5) + print(bag) + break + + # 5의 배수가 아닌 경우 + # 5의 배수로 만들기 위해서 + N -= 3 # 배달 해야 하는 설탕 -3kg + bag += 1 # 가져가야하는 봉지 수 +1 + # 1. 5의 배수가 될 때까지 + # 2. 또는 정확하게 N킬로그램으로 만들 수 없음이 확인될 때 까지 반복 + +else: + print(-1) From f2297fcade29cd66a79362ac836ec2c1cde9555f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Thu, 15 Jun 2023 00:00:34 +0900 Subject: [PATCH 12/15] =?UTF-8?q?#17=20:=202579=5F=EA=B3=84=EB=8B=A8=20?= =?UTF-8?q?=EC=98=A4=EB=A5=B4=EA=B8=B0.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #17 : Week4_예원이티 --- ...\250 \354\230\244\353\245\264\352\270\260.py" | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git "a/\354\235\264\355\213\260\354\230\210\354\233\220/2579_\352\263\204\353\213\250 \354\230\244\353\245\264\352\270\260.py" "b/\354\235\264\355\213\260\354\230\210\354\233\220/2579_\352\263\204\353\213\250 \354\230\244\353\245\264\352\270\260.py" index 8e8175d..c72bac9 100644 --- "a/\354\235\264\355\213\260\354\230\210\354\233\220/2579_\352\263\204\353\213\250 \354\230\244\353\245\264\352\270\260.py" +++ "b/\354\235\264\355\213\260\354\230\210\354\233\220/2579_\352\263\204\353\213\250 \354\230\244\353\245\264\352\270\260.py" @@ -2,16 +2,16 @@ input = sys.stdin.readline n = int(input()) -score = [] -dp = [] +s = [0 for i in range(301)] +dp = [0 for i in range(301)] -for _ in range(n): - score.append(int(input())) +for i in range(n): + s[i] = int(input()) -dp[0] = score[0] -dp[1] = score[0] + score[1] -dp[2] = max(score[0] + score[2], score[1] + score[2]) +dp[0] = s[0] +dp[1] = s[0] + s[1] +dp[2] = max(s[1] + s[2], s[0] + s[2]) for i in range(3, n): - dp[i] = max(score[i] + dp[i-2], score[i] + score[i-1] + dp[i-3]) + dp[i] = max(dp[i-3] + s[i-1] + s[i], dp[i-2] + s[i]) print(dp[n-1]) From d31ac29599f08003694e4083be14ff57f085f96b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Thu, 15 Jun 2023 00:09:54 +0900 Subject: [PATCH 13/15] =?UTF-8?q?#2=20:=2015650=5FN=EA=B3=BC=20M(2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #2 : Week1_예원이티 From ee11a025da130897801e7d32d3da04c471dd43d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Thu, 15 Jun 2023 00:11:44 +0900 Subject: [PATCH 14/15] =?UTF-8?q?#10=20:=2011279=5F=EC=B5=9C=EB=8C=80=20?= =?UTF-8?q?=ED=9E=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #10 : Week_예원이티 From ac013bf80124d22ac343a0e39b27b58963f41db7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=98=88=EC=9B=90?= <78153914+yewonahn@users.noreply.github.com> Date: Thu, 15 Jun 2023 00:14:16 +0900 Subject: [PATCH 15/15] =?UTF-8?q?#10=20:=201966=5F=ED=94=84=EB=A6=B0?= =?UTF-8?q?=ED=84=B0=ED=81=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #10 : Week2_예원이티