전체 글 (291) 썸네일형 리스트형 내일배움캠프 4기_Node심화 & GIT & 알고리즘 33일차 TIL 내일배움캠프 4기_Node심화 & GIT & 알고리즘 33일차 TIL 2022.12.28 - [JavaScript] - Node.js 심화 1주차_4 2022.12.28 - [JavaScript] - Node.js 심화 1주차_4_과제 2022.12.28 - [JavaScript] - Node.js 숙련주차 숙제 최종 제출 2022.12.28 - [알고리즘] - 코딩 테스트 연습 28일 2022.12.28 - [알고리즘] - 자료구조 3주차 숙제_2 오늘은 심화주차 과제? QUIZ를 풀어봤다. 답이 다 있는 상태에서 안보고 편하게 풀어봤다. 처음에 오류 떠서 당황했는데, 찾아보니 경고성 오류라 실행하는데는 아무 문제 없었다. 입문 주차 과제 해설을 들으면서 GITHUB 관리를 해야 겠다 싶어서 숙련주차 .. 자료구조 3주차 숙제_2 자료구조 3주차 숙제_2 멜론 베스트 앨범 뽑기 📄 나의 코드 class PlaysIndex: def __init__(self, index, play): self.index = index self.play = play def get_melon_best_album(genre_array, play_array): dict_sum = {} for i in range(len(genre_array)): if genre_array[i] in dict_sum.keys(): dict_sum[genre_array[i]] += play_array[i] else: dict_sum[genre_array[i]] = play_array[i] dict_sum_sort = sorted(dict_sum.items(), key=lambd.. Node.js 심화 1주차_4_과제 Node.js 심화 1주차_4_과제 2022.12.28 - [JavaScript] - Node.js 심화 1주차_4 목표 : 여기서 배운 아키텍처대로 게시글 CRUD 구현해보기! 📌 ThunderClient [POST] http://localhost:4000/api/posts Body : json형태 { "nickname": "Developer", "password": "1234", "title": "안녕하세요", "content": "안녕하세요 content 입니다." } 게시글 상세 조회 📄 routes/posts.routes.js router.get('/:postId', postsController.getPost); url 설정 📄 controllers/posts.controller.js getPo.. 이전 1 ··· 55 56 57 58 59 60 61 ··· 97 다음