classSolution:defminDeletion(self, nums: List[int])->int:
n, cnt =len(nums),0for i inrange(n):if(i - cnt)%2==0and i +1< n and nums[i]== nums[i +1]:
cnt +=1return cnt +1if(n - cnt)%2!=0else cnt
每日一题(LeetCode)----链表–分隔链表
1.题目(86. 分隔链表)
给你一个链表的头节点 head 和一个特定值 x ,请你对链表进行分隔,使得所有 小于 x 的节点都出现在 大于或等于 x 的节点之前。
你应当 保留 两个分区中每个节点的初…