-
Notifications
You must be signed in to change notification settings - Fork 0
237_DeleteNodeinaLinkedList
a920604a edited this page Apr 14, 2023
·
1 revision
void deleteNode(struct ListNode* node) {
node->val = node->next->val;
node->next = node->next->next;
}
- time complexity
O(1)
- space complexity
O(1)
footer