IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> Leetcode 刷题必须Review 十六 Lintcode(1343 936 491 133 422) -> 正文阅读

[数据结构与算法]Leetcode 刷题必须Review 十六 Lintcode(1343 936 491 133 422)

1343 · 两字符串和

给定两个仅含数字的字符串,你需要返回一个由各个位之和拼接的字符串

在这里插入图片描述

def SumofTwoStrings(self, A, B):
        # write your code here
        min_length = min(len(A), len(B))
        res = ""
        for i in range(-1, -min_length - 1, -1):
            res = str(int(A[i]) + int(B[i])) + res
        if min_length == len(A):
            res = B[0: len(B) - len(A)] + res
        else:
            res = A[0: len(A) - len(B)] + res
        return res
        

比之前的代码写的简单,下面是之前的:

def SumofTwoStrings(self, A, B):
        # write your code here
        if not A and not B: return 0
        res = ""
        cur_a, cur_b = -1, -1
        while (cur_a >= -len(A)) or (cur_b >= -len(B)):
            if cur_a == -len(A) - 1 and B[cur_b]:
                res = B[:cur_b + 1] + res
                break
            elif cur_b == -len(B) - 1 and A[cur_a]:
                res = A[:cur_a + 1] + res
                break
            elif A[cur_a] and B[cur_b]:
                if cur_a == -len(A) and cur_b == -len(B):
                    res = str(int(A[cur_a]) + int(B[cur_b])) + res
                    break
                else:
                    res = str(int(A[cur_a]) + int(B[cur_b])) + res
                    cur_a -= 1
                    cur_b -= 1
        return res

看了一个答案,虽然代码简单了,但是修改了A和B的值,不推荐。

def SumofTwoStrings(self, A, B):
        # write your code here
        if len(A) < len(B):
            A, B = B, A
        #Assume A is of larger length

        res = ""

        for i in range(-1, -len(B)-1, -1):
            res = str(int(A[i]) + int(B[i])) + res

        return A[ : (len(A)-len(B))] + res

936 · 首字母大写

输入一个英文句子,将每个单词的第一个字母改成大写字母
在这里插入图片描述

def capitalizesFirst(self, s):
        # Write your code here
        li = s.split(' ')
        res = []
        for i in li:
            if i.isalpha():
                res.append(i[0].upper()+i[1:])
            else:
                res.append(i)
        return " ".join(res)

用了一些方法的答案:

 def capitalizesFirst(self, s):
        # Write your code here
        return s.title()
def capitalizesFirst(self, s):
        # Write your code here
        array = s.split(" ")
        ans = " "
        return ans.join(string.capitalize() for string in array)

491 · 回文数

判断一个正整数是不是回文数。
回文数的定义是,将这个数反转之后,得到的数仍然是同一个数。

在这里插入图片描述

def isPalindrome(self, num):
        # write your code here
        return str(num) == str(num)[::-1]

下面是之前写的:

def isPalindrome(self, num):
        # write your code here
        if num <= 0: return False

        s = str(num)
        left, right = 0, len(s) - 1
        
        while left <= right:
            if s[left] != s[right]:
                return False
            left += 1
            right -= 1
        return True

133 · 最长单词

给一个词典,找出其中所有最长的单词。

在这里插入图片描述

def longestWords(self, dictionary):
        # write your code here
        max_length = max([len(i) for i in dictionary])
        res = []
        for i in dictionary:
            if len(i) == max_length:
                res.append(i)
        return res

看到一个用lambda和filter的

def longestWords(self, dictionary):
        # write your code here
        max_len = max([len(i) for i in dictionary])
        return list(filter(lambda x:len(x)>=max_len,dictionary))

422 · 最后一个单词的长度

给定一个字符串, 包含大小写字母、空格 ’ ',请返回其最后一个单词的长度。
如果不存在最后一个单词,请返回 0 。

在这里插入图片描述

def lengthOfLastWord(self, s):
        # write your code here
        li = s.strip().split(' ')
        if li[-1]:
            return len(li[-1])
        else:
            return 0
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-02-28 15:50:37  更:2022-02-28 15:51:44 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 16:26:26-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码