We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原题链接:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list/
解题思路:
/** * @param {ListNode} head * @return {ListNode} */ var deleteDuplicates = function (head) { // 如果当前递归时的节点数<=1,则直接返回当前节点 if (!head || !head.next) { return head; } // 假设下一个节点已经完成了删除操作,则将当前节点与下一个节点连接 head.next = deleteDuplicates(head.next); // 如果相邻的两个节点的值相等,则直接将下一个节点返回,即删除了当前节点 return head.val === head.next.val ? head.next : head; };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原题链接:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list/
解题思路:
The text was updated successfully, but these errors were encountered: