Bootstrap

Python算法之旅专栏(导航)

博客个人主页(非风V非雨):

https://blog.csdn.net/ygb_1024?spm=1010.2135.3001.5421

Python函数之旅(持续更新中):https://myelsa1024.blog.csdn.net/article/details/137436363?spm=1001.2014.3001.5502 
Python算法之旅(持续更新中):
一、入门级(100例):

001、反转一个3位整数(Reverse A Three-digit Integer)

002、合并排序数组1(Merge Sorted Arrays One) 

003、旋转字符串(Rotate String)

004、相对排名(Relative Ranking)

005、二分查找(Binary search)(验证存在性)

006、二分查找(Binary search)(查找边界值)

007、寻找下一个更大数(Next Greater Element)

008、统计字符串中单词数(Count Words From A String)

009、勒索信算法(Ransom Note Algorithm)

010、不重复的两个数(Two Non Repeating Numbers)

011、双胞胎字符串(Twin String)

012、最接近目标的值(The Value Closest To The Target)

013、点积(Dot Product)

014、函数运行时间(Function Execution Time)

015、区间查询(Interval Query)(子区间固定长度)

016、区间查询(Interval Query)(子区间不固定长度)

017、飞行棋(Flying Chess)(常规思路)

018、飞行棋(Flying Chess)(动态规划)

019、飞行棋(Flying Chess)(SPFA)

020、移动石子(Stone-moving)

021、数组剔除元素后的乘积(The Product Resulting From An Array With Elements Excluded)

022、第N个数位(The Nth Element Of A Sequence)

023、找不同(Find The Difference)(限定添加字符)

024、找不同(Find The Difference)(不限定添加字符)

025、第k个组合(The kth Combination)(仅限偶数)

026、第k个组合(The kth Combination)(不限奇偶)

027、平面列表(Flat List)

028、最长AB子串(Longest AB Alternating Substring)

029、删除字符(Delete Characters)

030、字符串写入的行数(Line Count For String Writing)

031、摩尔斯电码(Morse Code) 

032、比较字符串(Comparing Strings) 

033、验证字符串能否转换(Verify Whether A String Can Be  Converted)

034、经典二分查找算法(Classic Binary Search Algorithm)

035、连续字符段索引(Index of Consecutive Character Segments) 

036、搜索最近邻(Nearest Neighbour Search) 

037、构造矩形(Construct Rectangle) 

038、两个排序数组组合的第k小元素(The Kth Smallest Element In The Merged Result Of Two Sorted Arrays)

039、角色定位(Role Positioning)

;