- 博客(5)
- 收藏
- 关注
原创 力扣LeetCode - 算法
771.宝石与石头输入: J = “aA”, S = “aAAbbbb”输出: 3class Solution: def numJewelsInStones(self, jewels: str, stones: str) -> int: j = list(jewels); s = list(stones); count = 0; for Every_Stone in s: if Every_Stone
2021-01-18 09:13:03 116
原创 力扣LeetCode - SQL Server
182.编写一个 SQL 查询,查找 Person 表中所有重复的电子邮箱。示例:±—±--------+| Id | Email |±—±--------+| 1 | a@b.com || 2 | c@d.com || 3 | a@b.com |±—±--------+根据以上输入,你的查询应返回以下结果:±--------+| Email |±--------+| a@b.com |±--------+说明:所有电子邮箱都是小写字母。来源:力扣(LeetCo
2021-01-18 09:09:36 129
原创 python编程快速上手-第8章实践项目代码及运行结果
#8.9.1 扩展多重剪贴板扩展本章中的多重剪贴板程序,增加一个delete 命令行参数,它将从shelf 中删除一个关键字。然后添加一个delete 命令行参数,它将删除所有关键字。#! python3# mcb.pyw - Saves and loads pieces of text to the clipboard.# Usage: py.exe mcb.pyw save <keyword> - Saves clipboard to keyword.# py.exe
2020-06-17 16:35:17 281
原创 python编程快速上手-第7章实践项目代码及运行结果
代码如下:import re#7.18.1def pwCheck(pw): pwCheckRegex = re.compile(r'^.*(?=.{8,})(?=.*\d)(?=.*[A-Z])(?=.*[a-z]).*$') if pwCheckRegex.match(pw): print('Your password is valid') else: print('Your password is invalid')#Use the f
2020-05-28 14:34:53 304
原创 python编程快速上手-第6章实践项目代码及运行结果
python编程快速上手-第6章实践项目代码及运行结果代码如下:tableData = [ ['apples','oranges','cherries','banana'], ['Alice','Bob','Carol','David'], ['dogs','cats','moose','goose']]def printTable(table): colWidths = [0] * len(table) row = 0 col = 0 f
2020-05-27 15:09:42 248
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人