Skip to content

Commit 95caeb6

Browse files
authored
Update count-lattice-points-inside-a-circle.cpp
1 parent 7ecae5b commit 95caeb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/count-lattice-points-inside-a-circle.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Time: O(n * r^2)
22
// Space: O(min(n * r^2, max_x * max_y))
33

4-
// math, set
4+
// math, hash table
55
class Solution {
66
public:
77
int countLatticePoints(vector<vector<int>>& circles) {

0 commit comments

Comments
 (0)