Skip to content

Commit d65d622

Browse files
committed
update ref
1 parent 4d485bf commit d65d622

4 files changed

+4
-4
lines changed

lintcode/434.number-of-islands-ii.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Time: O(K)
33
// Space: O(NM + K)
44
// Ref: -
5-
// Note: leetcode-305
5+
// Note: Leetcode-305
66

77
// Given a n,m which means the row and column of the 2D matrix and an array of pair A( size k).
88
// Originally, the 2D matrix is all 0 which means there is only sea in the matrix.

lintcode/434.number-of-islands-ii.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Time: O(K)
33
# Space: O(NM + K)
44
# Ref: -
5-
# Note: leetcode-305
5+
# Note: Leetcode-305
66

77
# Given a n,m which means the row and column of the 2D matrix and an array of pair A( size k).
88
# Originally, the 2D matrix is all 0 which means there is only sea in the matrix.

lintcode/919.meeting-rooms-ii.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Tag: Heap, Greedy, Sweep Line, Sort
22
// Time: O(NlogN)
33
// Space: O(N)
4-
// Ref: leetcode-253
4+
// Ref: Leetcode-253
55
// Note: -
66

77
// Given an array of meeting time intervals consisting of start and end times `[[s1,e1],[s2,e2],...] (si < ei)`, find the minimum number of conference rooms required.

lintcode/919.meeting-rooms-ii.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Tag: Heap, Greedy, Sweep Line, Sort
22
# Time: O(NlogN)
33
# Space: O(N)
4-
# Ref: leetcode-253
4+
# Ref: Leetcode-253
55
# Note: -
66

77
# Given an array of meeting time intervals consisting of start and end times `[[s1,e1],[s2,e2],...] (si < ei)`, find the minimum number of conference rooms required.

0 commit comments

Comments
 (0)