Wonz
Wonz
全部文章
分类
# ACM(1)
# C++(32)
# C语言(12)
# Django(11)
# git(3)
# Hexo(6)
# HTML(1)
# LaTex学习(1)
# Linux(16)
# MySQL(1)
# PAT(46)
# Python(13)
# SQL数据库(10)
# 动态规划(13)
# 微型计算机原理与接口技术(16)
# 操作系统(9)
# 数据结构(28)
# 机器学习(4)
# 比赛感想与回忆(1)
# 汇编语言程序设计(11)
# 洛谷(4)
# 离散数学(5)
# 经验之谈(1)
# 编译原理(4)
# 计算机图形学(14)
# 资源汇总(5)
# 软件安装(34)
# 运筹学(5)
Go学习笔记(19)
LeetCode个人题解(179)
PostgreSQL(3)
——————数学——————(1)
——————科研——————(1)
——————算法——————(13)
——————随笔——————(12)
—————人工智能—————(1)
南邮期末考试回忆and知识梳理(1)
实用小工具分享(2)
找工作(1)
归档
标签
去牛客网
登录
/
注册
Wonz
Enjoy Coding. Enjoy Life.
TA的专栏
198篇文章
1人订阅
LeetCode个人题解
179篇文章
1595人学习
Go学习笔记
19篇文章
869人学习
全部文章
(共15篇)
Python字符串拼接之 f-string 详解
一、字符串拼接方法 1. + str1 = 'a' str2 = 'b' print(str1 + str2) 输出: ab 2. , str1 = 'a' str2 = 'b' print(str1, str2) 输出: a b **注:**这个有空格,, 方法只能用于 print 函数。...
Python3
字符串
Python
2021-10-24
0
671
Python format 用法详解
一、填充字符串 1. 位置 print("hello {0}, this is {1}.".format("world", "python")) # 根据位置下标进行填充 print("hello {}, this is {}....
字符串
Python
2020-12-15
0
715
用 Python 对比两个目录下的内容,并生成 Json 文件
一、背景 两个文件夹下,可能有相同名字的文件,也可能有不同名字的文件,相同名字的文件也有可能内容不同,因此需要对比,将结果输出到 Json 文件。 二、思路 先获取两个目录,然后分别遍历目录下的所有文件,将文件名加入文件列表,字符串拼接成新的文件路径,加入路径列表。 然后分别打开文件,通过计算文件哈...
字符串
Json
Python
2020-09-04
0
786
LeetCode | 0647. 回文子串【Medium】【Python】【中心扩展】【动态规划】
来自专栏
LeetCode 0647. Palindromic Substrings回文子串【Medium】【Python】【中心扩展】【动态规划】 Problem LeetCode Given a string, your task is to count how many palindromic sub...
字符串
动态规划
LeetCode
Python
2020-08-21
0
584
LeetCode | 1410. HTML Entity Parser HTML 实体解析器【Python】
来自专栏
LeetCode 1410. HTML Entity Parser HTML 实体解析器【Medium】【Python】【字符串】 Problem LeetCode HTML entity parser is the parser that takes HTML code as input and...
字符串
LeetCode
Python
2020-04-12
0
1595
LeetCode | 1408.String Matching in an Array数组中的字符串匹配【Python】
来自专栏
LeetCode 1408. String Matching in an Array数组中的字符串匹配【Easy】【Python】【字符串】 Problem LeetCode Given an array of string words. Return all strings in words w...
字符串
暴力
Python
LeetCode
2020-04-12
0
994
LeetCode | 0409. Longest Palindrome最长回文串【Python】
来自专栏
LeetCode 0409. Longest Palindrome最长回文串【Easy】【Python】【字符串】 Problem LeetCode Given a string which consists of lowercase or uppercase letters, find the ...
字符串
LeetCode
Python
2020-03-19
0
485
LeetCode | 面试题05. 替换空格【剑指Offer】【Python】
来自专栏
LeetCode 面试题05. 替换空格【剑指Offer】【Easy】【Python】【字符串】 问题 力扣 请实现一个函数,把字符串 s 中的每个空格替换成"%20"。 示例 1: 输入:s = "We are happy." 输出:"We%20...
字符串
LeetCode
Python
2020-03-17
0
599
LeetCode | 1160. 拼写单词【Python】
来自专栏
LeetCode 1160. Find Words That Can Be Formed by Characters拼写单词【Easy】【Python】【字符串】 Problem LeetCode You are given an array of strings words and a stri...
字符串
LeetCode
Python
2020-03-17
0
623
LeetCode | 面试题 01.06. 字符串压缩【Python】
来自专栏
LeetCode 面试题 01.06. 字符串压缩【Easy】【Python】【双指针】 问题 力扣 字符串压缩。利用字符重复出现的次数,编写一种方法,实现基本的字符串压缩功能。比如,字符串aabcccccaaa会变为a2b1c5a3。若“压缩”后的字符串没有变短,则返回原先的字符串。你可以假设字...
字符串
双指针
Python
LeetCode
2020-03-16
0
750
首页
上一页
1
2
下一页
末页