Skip to content

Commit c44d8e2

Browse files
authored
Clarify the operation about deleting duplicates (#174)
The original comment states that false is returned when list head is NULL. However, this is inconsistent with functions such as 'q_delete_mid' and has been confirmed to be a typo.
1 parent f087e77 commit c44d8e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

queue.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ bool q_delete_mid(struct list_head *head);
151151
* Reference:
152152
* https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii/
153153
*
154-
* Return: true for success, false if list is NULL.
154+
* Return: true for success, false if list is NULL or empty.
155155
*/
156156
bool q_delete_dup(struct list_head *head);
157157

scripts/checksums

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
444bab14cb8ad4c949f61b3c10a22a3ed2401425 queue.h
1+
186d420b53e21c6daf8eabe980a5b90780c53bcd queue.h
22
3337dbccc33eceedda78e36cc118d5a374838ec7 list.h

0 commit comments

Comments
 (0)