|
4 | 4 | 
|
5 | 5 |
|
6 | 6 | ## Progress
|
7 |
| -[Problem Status](#problem-status) shows the latest progress to all 1000+ questions. Currently we have 295 completed solutions. Note: questions with ♥ mark means that you have to **Subscript to premium membership** of LeetCode to unlock them. |
| 7 | +[Problem Status](#problem-status) shows the latest progress to all 1000+ questions. Currently we have 296 completed solutions. Note: questions with ♥ mark means that you have to **Subscript to premium membership** of LeetCode to unlock them. |
8 | 8 |
|
9 | 9 | ## Contributors
|
10 | 10 |
|
|
25 | 25 | * [Math](#math)
|
26 | 26 | * [Search](#search)
|
27 | 27 | * [Sort](#sort)
|
28 |
| -* [Union Find](#union-find) |
| 28 | +* [Graph](#graph) |
29 | 29 | * [Design](#design)
|
30 | 30 |
|
31 | 31 | ## Companies
|
|
365 | 365 | [Insert Interval](https://leetcode.com/problems/insert-interval/description/)| [Swift](./Sort/InsertInterval.swift)|Hard| O(n)| O(1)|
|
366 | 366 | [Largest Number](https://leetcode.com/problems/largest-number/)| [Swift](./Sort/LargestNumber.swift)| Medium| O(nlogn)| O(1)|
|
367 | 367 |
|
368 |
| -## Union Find |
| 368 | +## Graph |
369 | 369 | | Title | Solution | Difficulty | Time | Space |
|
370 | 370 | | ----- | -------- | ---------- | ---- | ----- |
|
371 |
| -[Number of Connected Components in an Undirected Graph](https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/)| [Swift](./UnionFind/NumberConnectedComponentsUndirectedGraph.swift)| Medium| O(nlogn)| O(n)| |
372 |
| -[Graph Valid Tree](https://leetcode.com/problems/graph-valid-tree/)| [Swift](./UnionFind/GraphValidTree.swift)| Medium| O(nlogn)| O(n)| |
373 |
| -[Number of Islands II](https://leetcode.com/problems/number-of-islands-ii/)| [Swift](./UnionFind/NumberIslandsII.swift)| Hard| O(klogmn)| O(mn)| |
| 371 | +[Number of Connected Components in an Undirected Graph](https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/)| [Swift](./Graph/NumberConnectedComponentsUndirectedGraph.swift)| Medium| O(nlogn)| O(n)| |
| 372 | +[Graph Valid Tree](https://leetcode.com/problems/graph-valid-tree/)| [Swift](./Graph/GraphValidTree.swift)| Medium| O(nlogn)| O(n)| |
| 373 | +[Number of Islands II](https://leetcode.com/problems/number-of-islands-ii/)| [Swift](./Graph/NumberIslandsII.swift)| Hard| O(klogmn)| O(mn)| |
| 374 | +[Course Schedule](https://leetcode.com/problems/course-schedule/)| [Swift](./Graph/CourseSchedule.swift)| Medium| O(n)| O(n)| |
374 | 375 |
|
375 | 376 | ## Design
|
376 | 377 | | Title | Solution | Difficulty | Time | Space |
|
|
586 | 587 | | | 308 | [Range Sum Query 2D - Mutable](https://leetcode.com/problems/range-sum-query-2d-mutable/) ♥ | Hard
|
587 | 588 | | | 307 | [Range Sum Query - Mutable](https://leetcode.com/problems/range-sum-query-mutable/) | Medium
|
588 | 589 | | | 306 | [Additive Number](https://leetcode.com/problems/additive-number/) | Medium
|
589 |
| -| [Swift](./UnionFind/NumberIslandsII.swift) | 305 | [Number of Islands II](https://leetcode.com/problems/number-of-islands-ii/) ♥ | Hard |
| 590 | +| [Swift](./Graph/NumberIslandsII.swift) | 305 | [Number of Islands II](https://leetcode.com/problems/number-of-islands-ii/) ♥ | Hard |
590 | 591 | | [Swift](./Array/NumMatrix.swift) | 304 | [Range Sum Query 2D - Immutable](https://leetcode.com/problems/range-sum-query-2d-immutable/) | Medium
|
591 | 592 | | | 303 | [Range Sum Query - Immutable](https://leetcode.com/problems/range-sum-query-immutable/) | Easy
|
592 | 593 | | | 302 | [Smallest Rectangle Enclosing Black Pixels](https://leetcode.com/problems/smallest-rectangle-enclosing-black-pixels/) ♥ | Hard
|
|
683 | 684 | | | 210 | [Course Schedule II](https://leetcode.com/problems/course-schedule-ii/) | Medium |
|
684 | 685 | | [Swift](./Array/MinimumSizeSubarraySum.swift) | 209 | [Minimum Size Subarray Sum](https://leetcode.com/problems/minimum-size-subarray-sum/) | Medium |
|
685 | 686 | | [Swift](./Design/ImplementTrie.swift) | 208 | [Implement Trie (Prefix Tree)](https://leetcode.com/problems/implement-trie-prefix-tree/) | Medium |
|
686 |
| -| | 207 | [Course Schedule](https://leetcode.com/problems/course-schedule/) | Medium | |
| 687 | +| [Swift](./Graph/CourseSchedule.swift) | 207 | [Course Schedule](https://leetcode.com/problems/course-schedule/) | Medium | |
687 | 688 | | [Swift](./LinkedList/ReverseLinkedList.swift) | 206 | [Reverse Linked List](https://leetcode.com/problems/reverse-linked-list/) | Easy |
|
688 | 689 | | [Swift](./String/IsomorphicStrings.swift) | 205 | [Isomorphic Strings](https://leetcode.com/problems/isomorphic-strings/) | Easy |
|
689 | 690 | | [Swift](./Math/CountPrimes.swift) | 204 | [Count Primes](https://leetcode.com/problems/count-primes/) | Easy |
|
|
0 commit comments