前些日子,阿里妹(妹子出题也这么难)发表了一篇文章《悬赏征集!5 道题征集代码界前 3% 的超级王者》——看到这个标题,我内心非常非常激动,因为终于可以证明自己技术很牛逼了。 但遗憾的是,凭借 8 年的 Java 开发经验,我发现这五道题自己全解错了!惨痛的教训再次证明,我是那被秒杀的 97% 的工 ...
分类:
编程语言 时间:
2019-12-26 09:47:55
阅读次数:
81
Problem Statement Given a list of words and two words word1 and word2, return the shortest distance between these two words in the list. Example: Assu ...
分类:
其他好文 时间:
2019-12-26 09:31:42
阅读次数:
87
--查看数据库中表的语句 SELECT s2.dbid , DB_NAME(s2.dbid) AS [数据库名] , --s1.sql_handle , ( SELECT TOP 1 SUBSTRING(s2.text, statement_start_offset / 2 + 1, ... ...
分类:
数据库 时间:
2019-12-25 23:56:33
阅读次数:
149
SELECT TOP 30 [Total Cost] = ROUND(avg_total_user_cost * avg_user_impact * (user_seeks + user_scans),0) , avg_user_impact , TableName = statement , [E ...
分类:
数据库 时间:
2019-12-25 20:26:38
阅读次数:
274
//switch statement import java.util.Scanner; public class Sample { public static void main(String[] args) { int num; Scanner ip = new Scanner(System.i... ...
分类:
其他好文 时间:
2019-12-25 13:17:48
阅读次数:
110
maven项目使用mybatis时,找不到mapper文件(.xml) 错误信息提示: 框架,它内部封装了JDBC,开发时只需要关注SQL语句本身,不需要花费精力去处理加载驱动、创建连接、创建statement等繁杂的过程。程序员直接编写原生态sql,可以严格控制sql执行性能,灵活度高。 2、MyBatis ...
分类:
其他好文 时间:
2019-12-20 15:20:15
阅读次数:
69
gitlab克隆报错:remote: HTTP Basic: Access denied;remote: You must use a personal access ..... 错误: remote: HTTP Basic: Access denied remote: You must use a ...
分类:
其他好文 时间:
2019-12-20 15:11:52
阅读次数:
106
Problem Statement Given a m x n matrix mat and an integer threshold. Return the maximum side-length of a square with a sum less than or equal to thres ...
分类:
其他好文 时间:
2019-12-19 13:08:00
阅读次数:
81
"1. Searching the Solution Space" "2. Solution Space and Solution Tree" "2.1. Solution Space" "2.2. Solution Tree" "3. DFS" "4. Back Track" "5. Subset ...
分类:
其他好文 时间:
2019-12-19 13:06:30
阅读次数:
78