1.Auto Rename Tag (标签插件) 2.Bracket Pair Colorizer(对代码中的括号添上一抹亮色) 3.Chinese language Pack for Visual Studio Code(vscode中文插件) 4.Code Spell Checker(TS和JS ...
分类:
其他好文 时间:
2020-11-04 17:38:33
阅读次数:
19
Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specificat ...
分类:
其他好文 时间:
2020-07-18 21:49:07
阅读次数:
59
if exists (select * from sysobjects where id = object_id(N'[fn_ChineseToSpell]') and xtype in (N'FN', N'IF', N'TF')) drop function [fn_ChineseToSpell] ...
分类:
数据库 时间:
2020-07-07 15:36:09
阅读次数:
89
https://codeforces.ml/contest/1337/problem/E 给出两个字符串 s和t ,字符串s的长度大于等于t的长度,和一个空字符串A; 可以执行两种操作: 1.将s的第一个字符删除并加到A字符串的前面; 2.将s的第一个字符删除并加到A字符串的后面; 求此过程中A的前 ...
分类:
其他好文 时间:
2020-04-19 18:01:51
阅读次数:
82
设计状态dp[i][j]表示T串Ti到Tj(区间i,j)匹配到的个数 由于T串比S串小,所以在区间(m,n)可以插入的字符串是任意的。 转移方程 if s[i] = t[l],dp[l][r] = dp[l][r] + dp[l+1][r] if s[i] = t[r] ,dp[l][r] = dp ...
分类:
其他好文 时间:
2020-04-17 12:35:45
阅读次数:
76
补题,参考博客:https://blog.csdn.net/qq_43676357/article/details/105559491?fps=1&locationNum=2 ...
分类:
其他好文 时间:
2020-04-16 20:54:41
阅读次数:
78
Businesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or phrase. For ...
分类:
其他好文 时间:
2020-03-02 10:41:36
阅读次数:
89
1005 Spell It Right (20分) 题目: Given a non negative integer N , your task is to compute the sum of all the digits of N , and output every digit of the ...
分类:
其他好文 时间:
2020-01-26 23:49:39
阅读次数:
85
基本思想: 弱智题,没啥可说的; 关键点: 无; #include<iostream> #include<stdlib.h> #include<stdio.h> #include<vector> #include<string> #include<math.h> #include<algorithm ...
分类:
其他好文 时间:
2020-01-16 12:15:18
阅读次数:
86
剑指offer-18-2. 删除链表中重复的结点链表在一个排序的链表中,存在重复的结点,请删除该链表中重复的结点,重复的结点不保留,返回链表头指针。 例如,链表1->2->3->3->4->4->5 处理后为 1->2->5思路:采用递归的方法查找从头节点开始重复的节点如果没有重复节点,pHead.... ...
分类:
其他好文 时间:
2019-12-26 00:04:53
阅读次数:
86