Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 재귀
- HashTable
- Medium
- Array
- 쉬움
- Depth-first Search
- backtracking
- leetcode
- 이진트리
- binary tree
- 리트코드
- two pointers
- hash table
- binary search
- Python
- math
- dfs
- tree
- DP
- 문자열
- recursive
- linked list
- sorting
- Binary
- 미디움
- list
- easy
- 중간
- matrix
- string
Archives
- Today
- Total
목록2024/01/03 (1)
부부의 코딩 성장 일기
LeetCode 46(Permutations, Python)
1. 문제 링크 Permutations - LeetCode Permutations - LeetCode Can you solve this real interview question? Permutations - Given an array nums of distinct integers, return all the possible permutations. You can return the answer in any order. Example 1: Input: nums = [1,2,3] Output: [[1,2,3],[1,3,2],[2,1,3],[2,3,1], leetcode.com 2. 문제 설명 [1,2,3] 이 주어지면 이 수들로 가능한 모둔 순열(중복X, 순서 구분O)을 반환하는 문제 예시) [1,2,3]이..
Algorithm/LeetCode
2024. 1. 3. 19:00