🐼201908171342330
🐼201908171342330
全部文章
分类
题解(16)
归档
标签
去牛客网
登录
/
注册
🐼201908171342330的博客
全部文章
(共16篇)
题解 | #字符串字符匹配#
思路 把长字符串放入set; 遍历短字符串,查看每个字符是否在以上的set中,如果在,counter+1,否则跳过; 最后比较counter和短字符串的长度是否一致。 代码 while True: try: s1 = input() s2 = input(...
字符串
Python3
2021-06-27
0
675
题解 | #在字符串中找出连续最长的数字串#
思路 把非数字的全部替换成空格,然后切割; 遍历一次得到最大长度; 再遍历一次,把符合上述最大长度的字符串取出作追加拼接。 代码 while True: try: s = input() for c in s: if not c.i...
字符串
Python3
2021-06-27
124
3103
题解 | #记负均正#
思路 遍历。 代码 while True: try: n = int(input()) s = list(map(int, input().strip().split())) c = 0 v = 0 sum = ...
Python3
2021-06-26
0
804
题解 | #自守数#
思路 遍历 用range,从0开始,一直到n+1(这里要注意不能漏最后一个) 一个数字的末尾是2,3,4,7,8,9的话,不可能题目要求,平方的末尾都和自己不一样; 数字to字符串,对i的整体和j的倒数几位直接对比计数即可。 代码 while True: try: n =...
字符串
Python3
2021-06-26
7
934
题解 | #字符统计#
思路 先把输入的s进行排序,这样排序一得到的就是ASCII的顺序,免除了后处理; 再通过字典统计个数,对个数进行排序即可,这是排序二 代码 while True: try: s = input() s = sorted(s) counter...
字符串
2021-06-26
0
601
题解 | #单词倒排#
思路 代码 while True: try: s = input() res = [] for i in range(len(s)): # 对于字符串中非字符的东西,变成空格放入新list中 if...
字符串
2021-06-26
0
455
题解 | #输入n个整数,输出其中最小的k个#
思路 输入输出格式。。 代码 while True: try: # split()分割所有空白字符❗️ n, k = input().split() n_list = input() x = [int(i) for i in ...
字符串
Python3
2021-06-25
21
2528
题解 | #单链表的排序#
思路 原链表,挨个push到vector中; vector利用sort排序; 利用vector新建链表。 代码 class Solution { public: /** * * @param head ListNode类 the head node * @...
c++
链表
2021-06-22
12
911
题解 | #丑数#
思路: https://leetcode-cn.com/problems/ugly-number/solution/chou-shu-by-leetcode-solution-fazd/ 代码: class Solution { public: int GetUglyNumber_Solut...
动态规划
2021-06-20
0
439
题解 | #最大公约数#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 求出a、b的最大公约数。 * @param a int * @param b int ...
递归
c++
2021-06-20
0
521
首页
上一页
1
2
下一页
末页