Skip to content

Commit 65856c9

Browse files
committed
Update solution for problem 253
1 parent 3e8fd6e commit 65856c9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

LeetCode/0251-0300/0253-MeetingRoomsII.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//-----------------------------------------------------------------------------
2-
// Runtime: 108ms
3-
// Memory Usage: 27.1 MB
4-
// Link: https://leetcode.com/submissions/detail/379095042/
2+
// Runtime: 104ms
3+
// Memory Usage: 28 MB
4+
// Link: https://leetcode.com/submissions/detail/409212378/
55
//-----------------------------------------------------------------------------
66

77
using System.Linq;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ The C# solutions for LeetCode problems.
283283
| # | Title | Solutions | Time | Space | Comments |
284284
|---| ----- | --------- | ---- | ----- | -------- |
285285
| 252 | Meeting Rooms | [C#](./LeetCode/0251-0300/0252-MeetingRooms.cs)(100ms) | O(NlogN) | O(1) | |
286-
| 253 | Meeting Rooms II | [C#](./LeetCode/0251-0300/0253-MeetingRoomsII.cs)(108ms) | O(NlogN) | O(N) | |
286+
| 253 | Meeting Rooms II | [C#](./LeetCode/0251-0300/0253-MeetingRoomsII.cs)(104ms) | O(NlogN) | O(N) | |
287287
| 256 | Paint House | [C#](./LeetCode/0251-0300/0256-PaintHouse.cs)(88ms) | O(N) | O(1) | |
288288
| 257 | Binary Tree Paths | [C#](./LeetCode/0251-0300/0257-BinaryTreePaths.cs)(248ms) | O(N) | O(N) | |
289289
| 258 | Add Digits | [C#](./LeetCode/0251-0300/0258-AddDigits.cs)(36ms) | O(N) | O(1) | |

0 commit comments

Comments
 (0)