일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 자료구조
- Operating System
- OS
- 프로그래머스
- 기초100제
- 알고리즘
- C++
- web
- memory
- react-redux
- codeup
- Redux
- 타입스크립트
- 공부
- 협업
- js to ts
- react
- 코드업
- Spring
- 토이프로젝트
- error
- 분할메모리할당
- 스프링
- Java
- 파이썬
- 정렬
- 일상
- 리덕스장바구니
- 백준
- CPU 스케줄링
- Today
- Total
목록분류 전체보기 (304)
감자튀김 공장🍟
✔ 문제 ✔ 풀이 import sys input = sys.stdin.readline n = int(input()) dp = [0] * (n+1) for i in range(2, n+1): dp[i] = dp[i-1] + 1 # n-1 연산, 횟수 저장 (+1) if i % 3 == 0: dp[i] = min(dp[i], dp[i//3] + 1) # 1을 더하는 이유: dp는 계산 값이 아닌 횟수를 저장 if i % 2 == 0: dp[i] = min(dp[i], dp[i//2] + 1) print(dp[n]) ✔ 후기 만만하게 봤다가 큰 코 다쳤지요..? if continue ~ elif continue 했다가 지맘대로 돌아가서 당황했다... 사실 맞는 코드도 아니여서 적지는 않았지만... (대충 적어..
오늘 끝낼 수 있겠지..? ProductInfo F 제품의 상세페이지에서 Add to cart 버튼을 누르면 된다. dispatch(addtocart(제품의 id)) > actions에서 const request = axios.post(`${USER_SERVER}/addToCart`, body) 로 productId를 넘겨준다. B users.js user collection에 존재하는 해당 유저의 정보를 가져오기 위해 auth를 필요로 한다. router.post("/addToCart", auth, (req, res) => { findOne()을 통해 F에서 받은 req.id와 auth 속의 user id를 비교한다. req의 id가 user의 cart에 있다면 findOneAndUpdate()를 통해..
졸립다ㅎ LandingPage Filter F axios.post('/api/product/products', body) products을 모두 가져와 메인 화면에 띄워준다. B DAY 3의 /produdcts 참고 product collection에 들어있는 모든 상품 정보를 가져온다. FileUpload F axios.post('/api/product/image', formData, config) /image로 제품의 사진을 백엔드로 보낸다. B router.post('/image', (req, res) => multer를 사용해서 이미지를 저장한다. (업로드 페이지에서 multer로 이미지를 가져오는 것에 성공하면 바로 이미지가 저장된다.) DetailProductPage F axios.get(`/..
✔ 문제 ✔ 풀이 🤢 오답 코드1 import sys input = sys.stdin.readline n = int(input()) arr = [] dp = [0] * (n+1) for _ in range(n): arr.append(int(input())) dp[0] = arr[0] dp[1] = arr[0] + arr[1] dp[2] = max(arr[0] + arr[1], arr[0] + arr[2]) for i in range(3, n): dp[i] = max(dp[i-2] + arr[i], dp[i-3] + arr[i-1] + arr[i]) print(dp[n-1]) 🤢 오답 코드2 import sys input = sys.stdin.readline n = int(input()) arr = [0 ..
✔ 문제 ✔ 풀이 import sys input = sys.stdin.readline n = int(input()) tri = [] for _ in range(n): tri.append(list(map(int, input().split()))) for i in range(1, n): for j in range(len(tri[i])): if j == 0: # 가장 왼쪽인 경우 tri[i][j] = tri[i-1][j] + tri[i][j] elif j == len(tri[i]) - 1: # 가장 오른쪽인 경우 tri[i][j] = tri[i-1][j-1] + tri[i][j] else: tri[i][j] = max(tri[i-1][j-1], tri[i-1][j]) + tri[i][j] print(max(t..
Logout F axios.get(`${USER_SERVER}/logout`) B actions const request = axios.get(`${USER_SERVER}/logout`) routes/user.js User.findOneAndUpdate({ _id: req.user._id }, { token: "", tokenExp: "" }, findOneAndUpdate를 사용하여 db에 저장된 id를 찾은 후 해당 유저의 token과 tokenExp를 공백(값을 초기화)으로 만들어 주면서 로그아웃을 시킨다. Product F body에 product의 정보들을 담아 제품을 업로드할때 axios를 사용한다. Axios.post("/api/product", body) B routes/product.js..
✔ 문제 ✔ 풀이 🔥 index error import sys input = sys.stdin.readline n = int(input()) rgb = [] for _ in range(n): rgb.append(list(map(int, input().split()))) for i in range(1, n): rgb[i][0] = min(rgb[i-1][1], rgb[i+1][2]) + rgb[i][0] rgb[i][1] = min(rgb[i-1][0], rgb[i+1][2]) + rgb[i][1] rgb[i][2] = min(rgb[i-1][0], rgb[i+1][1]) + rgb[i][2] print(min(rgb[n-1])) 👾 정답 import sys input = sys.stdin.readline..
✔ 문제 ✔ 풀이 import sys input = sys.stdin.readline n = int(input()) arr = [0] + list(map(int, input().split())) dp = [-1001] * (n+1) for i in range(1, n+1): dp[i] = max(arr[i], dp[i-1] + arr[i]) print(max(dp)) ✔ 설명 가장 큰 값을 구해야하기 때문에 이전까지의 합에 현재 숫자를 더한 값과 현재 위치의 값 중 더 큰 값을 dp에 저장한다. ✔ 후기 1개 이상의 연속된 수를 더해야한다고 하길래 arr에서 1개 합, 2개 합, 3개 합 이렇게 하나씩 다 구하고 값을 비교해야 한다고 생각했다. 분명 그렇게 구현되지 않을 것 같았는데 저 생각이 머리를 지..
Register F email, lastName, name, password, confirmPassword를 입력, 저장되는 데이터는 email, password, name, lastname, image이다. dispatch를 사용해 registerUser 함수 사용 actions의 registerUser 함수에서 axios post를 사용해 데이터를 저장 B router/user.js router.post를 사용해 새로운 User 객체를 생성 후 객체를 데이터에 저장한다. Auth F src/hoc/auth.js 모든 route page에서 Auth(component, option, adminRoute) 를 사용한다. (로그인이 되어있는지 token 등을 확인) actions에 있는 auth()를 사용..
✔ 문제 ✔ 풀이 import sys input = sys.stdin.readline n = int(input()) dp = [0] * 102 dp[1] = 1 dp[2] = 1 dp[3] = 1 for _ in range(n): x = int(input()) for i in range(3, x+1): dp[i] = dp[i-2] + dp[i-3] print(dp[x]) ✔ 후기 P(1)부터 P(10)까지 값을 적어놓고 규칙을 찾아가보면 된다. 처음에는 P(5)까지 값을 미리 부여해놔야 하는 줄 알고 P(6)부터 규칙을 찾아봤다. dp[i] = dp[i-1] + dp[i-2] 인줄 알았으나 P(7)에서 규칙이 맞지 않았다. 결국엔 dp[i] = dp[i-2] + dp[i-3] 규칙을 찾고 P(5)와 P(..