Skip to content

Commit 09efcee

Browse files
committed
Update C# solution for problem 763
1 parent b75f406 commit 09efcee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

LeetCode/0751-0800/0763-PartitionLabels.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//-----------------------------------------------------------------------------
2-
// Runtime: 228ms
3-
// Memory Usage: 30.8 MB
4-
// Link: https://leetcode.com/submissions/detail/360464537/
2+
// Runtime: 224ms
3+
// Memory Usage: 30.6 MB
4+
// Link: https://leetcode.com/submissions/detail/391038298/
55
//-----------------------------------------------------------------------------
66

77
using System;

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ The C# solutions for LeetCode problems.
600600
| 759 | Employee Free Time | [C#](./LeetCode/0751-0800/0759-EmployeeFreeTime.cs)(432ms) | O(NlogN) | O(N) | |
601601
| 760 | Find Anagram Mappings | [C#](./LeetCode/0751-0800/0760-FindAnagramMappings.cs)(236ms) | O(N^2) | O(N) | |
602602
| 762 | Prime Number of Set Bits in Binary Representation | [C#](./LeetCode/0751-0800/0762-PrimeNumberOfSetBitsInBinaryRepresentation.cs)(48ms) | O(N) | O(1) | |
603-
| 763 | Partition Labels | [C#](./LeetCode/0751-0800/0763-PartitionLabels.cs)(228ms) | O(N) | O(1) | |
603+
| 763 | Partition Labels | [C#](./LeetCode/0751-0800/0763-PartitionLabels.cs)(224ms) | O(N) | O(1) | |
604604
| 765 | Couples Holding Hands | [C#](./LeetCode/0751-0800/0765-CouplesHoldingHands.cs)(92ms) | O(N) | O(N) | |
605605
| 766 | Toeplitz Matrix | [C#](./LeetCode/0751-0800/0766-ToeplitzMatrix.cs)(96ms) | O(M*N) | O(1) | |
606606
| 767 | Reorganize String | [C#](./LeetCode/0751-0800/0767-ReorganizeString.cs)(84ms) | O(N) | O(1) | |

0 commit comments

Comments
 (0)