Skip to content

Commit 00f3be7

Browse files
authored
Update my-calendar-iii.cpp
1 parent 65aff7c commit 00f3be7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: C++/my-calendar-iii.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Time: O(nlogn) ~ O(n^2)
22
// Space: O(n)
33

4-
class MyCalendarThree{
4+
class MyCalendarThree {
55
public:
66
MyCalendarThree() {
77
events_.emplace(-1, 0);
@@ -25,7 +25,7 @@ class MyCalendarThree{
2525
// Space: O(n)
2626
class MyCalendarThree2 {
2727
public:
28-
MyCalendarThree() {
28+
MyCalendarThree2() {
2929

3030
}
3131

0 commit comments

Comments
 (0)