본문 바로가기

전체 글

[알고리즘] Leetcode #310 최소 높이 트리 (Python) ↓↓↓ 아래는 내 리트코드 계정 ↓↓↓ leetcode.com/Jiwon_Lee/ Jiwon Lee - LeetCode Profile Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 설명 A tree is an undirected graph in which any two vertices are connected by exactly one path. In other words, any connected graph without simple cycles is a tree. Gi.. 더보기
[서평] 딥러닝 텐서플로 교과서 (Deep Learning with Tensorflow)| 서지영 | 길벗 0. 서론 길벗에서 딥러닝 관련 신간이 나왔다. 작년에는 길벗의 '머신러닝 교과서 with python, scikit-learn, tensorflow'로 진행한 학부 기계학습 수업을 들었는데, 머신러닝 관련 다양한 알고리즘을 소개해줄 뿐 아니라 세부적인 이론도 꽤 심도 있게 다루어 도움이 됐던 기억이 있다. 이번 신간은 제목에서도 드러나듯, '딥러닝'과 '텐서플로'에 더 집중한 구성이다. 그런 의미에서 '머신러닝 교과서'의 뒷부분에서 심층 신경망에 대해 재미있게 공부한 독자라면, 이번 책 역시 적합할 것이라고 본다. 1. 책 소개 '딥러닝 기초 이론부터 CNN, RNN, 시계열분석, 성능 최적화, 자연어 처리, 강화 학습, 생성모델까지', 이 책의 표지에 적힌 소개글이다. 길게 늘어진 문장처럼 딥러닝의 .. 더보기
[알고리즘] Leetcode #110 균형 이진 트리 (Python) ↓↓↓ 아래는 내 리트코드 계정 ↓↓↓ leetcode.com/Jiwon_Lee/ Jiwon Lee - LeetCode Profile Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 설명 Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as: a binary tree in which the left and right .. 더보기
[알고리즘] Leetcode #617 두 이진 트리 병합 (Python) ↓↓↓ 아래는 내 리트코드 계정 ↓↓↓ leetcode.com/Jiwon_Lee/ Jiwon Lee - LeetCode Profile Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 설명 You are given two binary trees root1 and root2. Imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the oth.. 더보기
[알고리즘] Leetcode #226 이진 트리 반전 (Python) ↓↓↓ 아래는 내 리트코드 계정 ↓↓↓ leetcode.com/Jiwon_Lee/ Jiwon Lee - LeetCode Profile Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 설명 Given the root of a binary tree, invert the tree, and return its root. 입출력 예 Example 1: Input: root = [4,2,7,1,3,6,9] Output: [4,7,2,9,6,3,1] Example 2: Input: ro.. 더보기
[Paper Review] Indoor Behavior Recognition Using Convolutional LSTM 두 번째 논문 리뷰! 이번 논문은 지난 번에 읽은 논문에 이어 Convolutional LSTM 알고리즘과 실내 환경 데이터를 활용한 특징 추출을 다루고 있다. 마침 관심있는 대회에서 이 모델을 베이스라인으로 제공하길래 좀 더 집중해서 읽어볼 수 있었다. 원문 링크는 아래에 첨부한다. https://scienceon.kisti.re.kr/srch/selectPORSrchArticle.do?cn=DIKO0015063537&dbt=DIKO 목차 Abstract 사물 인터넷 환경에서 각종 센서들을 통해 얻은 환경에 대한 정보들은 사용자의 신체로부터 직접적으로 수집된다는 점에서 개인정보 침해 등 여러 불편함이 있을 수 있다. 이에 좀 더 간접적인 방법으로 사용자 주변 상황에 대한 정보를 수집해 행동 인식에 사용.. 더보기
[알고리즘] Leetcode #687 가장 긴 동일 값의 경로 (Python) ↓↓↓ 아래는 내 리트코드 계정 ↓↓↓ leetcode.com/Jiwon_Lee/ Jiwon Lee - LeetCode Profile Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 설명 Given the root of a binary tree, return the length of the longest path, where each node in the path has the same value. This path may or may not pass through the .. 더보기
[알고리즘] Leetcode #509 피보나치 수 (Python) ↓↓↓ 아래는 내 리트코드 계정 ↓↓↓ leetcode.com/Jiwon_Lee/ Jiwon Lee - LeetCode Profile Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 설명 The Fibonacci numbers, commonly denoted F(n) form a sequence, called the Fibonacci sequence, such that each number is the sum of the two preceding ones, starting .. 더보기