LeetCode:328. 奇偶链表387. 字符串中的第一个唯一字符(python3)

Posted 南岸青栀*

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode:328. 奇偶链表387. 字符串中的第一个唯一字符(python3)相关的知识,希望对你有一定的参考价值。

328. 奇偶链表

在这里插入图片描述

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def oddEvenList(self, head: ListNode) -> ListNode:
        if head == None: return head
        evenHead = head.next
        odd,even = head,evenHead
        while even and even.next:
            odd.next = even.next
            odd = odd.next
            even.next = odd.next
            even = even.next
        odd.next = evenHead
        return head

387. 字符串中的第一个唯一字符

在这里插入图片描述

法1:第一次出现记录索引,第二次出现将其设置为字符串长度+1;遍历之后查看最小值是否大于字符串长度,最小值不大于字符串长度即为唯一字符的索引。

class Solution:
    def firstUniqChar(self, s: str) -> int:
        dic = {}
        for i in range(len(s)):
            if s[i] not in dic:
                dic[s[i]] = i
            else:
                dic[s[i]] = len(s)+1
        res = min(dic.values())
        return -1 if res>len(s) else res

以上是关于LeetCode:328. 奇偶链表387. 字符串中的第一个唯一字符(python3)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 328. 奇偶链表

LeetCode328. 奇偶链表

leetcode328:奇偶链表

LeetCode 328. 奇偶链表

LeetCode 328. 奇偶链表c++/java详细题解

LeetCode - 328 - 奇偶链表 - java - 一种思维,两种解法