He is my test step: In a test enviroument, I make a table "test"/ demo table:create table test ( a nvharchar(100)); trigger record table:CREATE TABLE ...
分类:
数据库 时间:
2020-02-16 21:08:08
阅读次数:
128
``` // SendMail connects to the server at addr, switches to TLS if // possible, authenticates with the optional mechanism a if possible, // and then s... ...
分类:
其他好文 时间:
2020-02-16 20:48:34
阅读次数:
77
将有序数组转化为二叉搜索树。题目即是题意。只要输出一个有效的BST即可。此题可以跟109题一起做,要求很接近但是做法不太一样。例子, Example: Given the sorted linked list: [-10,-3,0,5,9], One possible answer is: [0,- ...
分类:
其他好文 时间:
2020-02-11 09:53:31
阅读次数:
59
my_fake_useragent 和 fake_useragent实质基本一致,可以调用里面的方法User Agent 例my_fake_useragent 底层 class UserAgent(): parsed_json_data = load_parsed_json_data() def _ ...
分类:
其他好文 时间:
2020-02-08 00:23:38
阅读次数:
76
1 """ 2 Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. 3 A mapping of d ...
分类:
其他好文 时间:
2020-02-06 16:44:30
阅读次数:
70
问题描述 回文串,是一种特殊的字符串,它从左往右读和从右往左读是一样的。小龙龙认为回文串才是完美的。现在给你一个串,它不一定是回文的,请你计算最少的交换次数使得该串变成一个完美的回文串。 交换的定义是:交换两个相邻的字符 例如mamad 第一次交换 ad : mamda 第二次交换 md : mad ...
分类:
其他好文 时间:
2020-02-05 11:43:20
阅读次数:
55
乘法逆元定义: b存在乘法逆元的充要条件是b与模数m互质 原因:b * x ≡ 1 (mod m) 如果b和m不互质,则 b * x肯定是m的倍数,b * x%m=0 所以b%m==0 ,b不存在乘法逆元 1.当n为质数时,可以用快速幂求逆元: a / b(整除) ≡ a * x (mod m) 两 ...
分类:
其他好文 时间:
2020-02-05 11:41:31
阅读次数:
63
90. Subsets II Given a collection of integers that might contain duplicates, nums , return all possible subsets (the power set). Note : The solution s ...
分类:
其他好文 时间:
2020-02-04 00:42:05
阅读次数:
78
In S4 cloud, it is not possible to create employee via tcode BP any more in backend via support user: Instead, you have to do it using business user i ...
分类:
其他好文 时间:
2020-02-02 17:46:43
阅读次数:
70
使用explain关键字获取sql执行性能 语法如下: explain select * from table explain 中的列expain出来的信息有10列,分别是id,select_type,table、type,partitions,possible_keys,key,key_len,r ...
分类:
数据库 时间:
2020-02-02 16:11:22
阅读次数:
120