Points and Lines¶
Table of Contents¶
- 1232. Check If It Is a Straight Line (Easy)
- 2280. Minimum Lines to Represent a Line Chart (Medium)
- 1610. Maximum Number of Visible Points (Hard)
- 2152. Minimum Number of Lines to Cover Points (Medium) 👑
1232. Check If It Is a Straight Line¶
-
LeetCode | LeetCode CH (Easy)
-
Tags: array, math, geometry
2280. Minimum Lines to Represent a Line Chart¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, math, geometry, sorting, number theory
1610. Maximum Number of Visible Points¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, math, geometry, sliding window, sorting
2152. Minimum Number of Lines to Cover Points¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, hash table, math, dynamic programming, backtracking, bit manipulation, geometry, bitmask