leetcode date2018/4/8
Posted proven
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode date2018/4/8相关的知识,希望对你有一定的参考价值。
(1)
class Solution(object): def firstUniqChar(self, s): """ :type s: str :rtype: int """ letters=‘abcdefghijklmnopqrstuvwxyz‘ index=[s.index(l) for l in letters if s.count(l) == 1] return min(index) if len(index) > 0 else -1
(2)
# Definition for singly-linked list. # class ListNode(object): # def __init__(self, x): # self.val = x # self.next = None class Solution(object): def reverseList(self, head): """ :type head: ListNode :rtype: ListNode """ next=None while head: head.next,head,next=next,head.next,head return next
(3)
class Solution(object): def intersect(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] :rtype: List[int] """ c1 = collections.Counter(nums1) c2 = collections.Counter(nums2) return list((c1&c2).elements())#elements返回一个迭代器。元素被重复了多少次,在该迭代器中就包含多少个该元素。元素排列无确定顺序,个数小于1的元素不被包含。
以上是关于leetcode date2018/4/8的主要内容,如果未能解决你的问题,请参考以下文章
带有神秘附加字符的 Javascript Date getTime() 代码片段
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段
[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段