일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- C++
- Sort
- linked list
- 동적계획법
- Interval
- Depth-First Search
- 탐욕알고리즘
- hash table
- bitwise operation
- binary search
- union-find
- Sorting
- 비트 연산
- Greedy
- CPP
- 비트 조작
- DFS
- 깊이 우선 탐색
- 메모이제이션
- graph
- Array
- binary
- 알고리즘
- dynamic programming
- bit manipulation
- algorithm
- unordered_map
- LeetCode
- 이진탐색
- 배열
- Today
- Total
목록C++ (29)
공대생 공부노트(Notes for Engineering Studies)

https://leetcode.com/problems/longest-common-subsequence/ Longest Common Subsequence - LeetCode 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 (Longest Common Subsequence 문제는 위 링크에서 풀어보실 수 있습니다.) Longest Common Subsequence 문제는 다음과 같다. Given two strings ..

https://leetcode.com/problems/coin-change/ Coin Change - LeetCode 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 (Coin Change 문제는 위 링크에서 풀어보실 수 있습니다.) Coin Change 문제는 다음과 같다. You are given an integer array coins representing coins of different denominations and an int..

https://leetcode.com/problems/word-break/ Word Break - LeetCode 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 (Word Break 문제는 위 링크에서 풀어보실 수 있습니다.) Word Break 문제는 다음과 같다. Given a string s and a dictionary of string wordDict, return true if s can be segmented into a spa..

https://leetcode.com/problems/combination-sum-iv/ Combination Sum IV - LeetCode 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 (Combination Sum IV 문제는 위 링크에서 풀어보실 수 있습니다.) Combination Sum IV 문제는 다음과 같다. Given an array of distinct integers nums and a target inte..

https://leetcode.com/problems/climbing-stairs/ Climbing Stairs - LeetCode 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 (Climbing Stairs 문제는 위 링크에서 풀어보실 수 있습니다.) Climbing Stairs 문제는 다음과 같다. You are climbing a staircase. It takes n steps to reach the top. Each tim..