上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: mvn command 阅读全文
posted @ 2019-11-24 21:53 connie313 阅读(109) 评论(0) 推荐(0) 编辑
摘要: how to programe JPQL Hibernate --HQL sentence JPQL, HQL sentence via @Query 阅读全文
posted @ 2019-11-23 22:54 connie313 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 示例:1: 输入: candidates = [2, 3, 6, 7],target = 7,所求解集为: [[7], [2, 2, 3]] 示例2: 输入:candidates = [2, 3, 6, 7], depth=3,所求解集为:[[2,3,6],[2,3,7],[2,6,7],[3,6, 阅读全文
posted @ 2019-11-17 17:41 connie313 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 利用Set去重,然后再利用from,转换成数组 const unique = (arr) => Array.from( new Set(arr) ); 遍历,判断当前项的下标与在数组中第一次出现的下标做比较 const unique = (arr) => { let ret = []; for(le 阅读全文
posted @ 2019-11-15 19:02 connie313 阅读(117) 评论(0) 推荐(0) 编辑
摘要: https://segmentfault.com/a/1190000014131950?utm_source=tag-newest 阅读全文
posted @ 2019-06-02 23:27 connie313 阅读(97) 评论(0) 推荐(0) 编辑
摘要: *Top 10 Sites for your career:* 1. LinkedIN 2. Indeed 3. Careerealism 4. Job-Hunt 5. JobBait 6. Careercloud 7. GM4JH 8. Personalbrandingblog 9. Jibber 阅读全文
posted @ 2019-05-19 18:41 connie313 阅读(119) 评论(0) 推荐(0) 编辑
摘要: compile工具 ES6 const config = { entry: "./src/main.js", output: { filename: "bundle.js", path: path.resolve(__dirname, 'dist') }, module: { rules: [ { 阅读全文
posted @ 2019-05-11 08:55 connie313 阅读(196) 评论(0) 推荐(0) 编辑
摘要: Point: the palindromic should has a center, the center is also the center of the palindromic string.so we can find the longest one. Given a string S, 阅读全文
posted @ 2019-05-02 23:18 connie313 阅读(98) 评论(0) 推荐(0) 编辑
摘要: http://keer2345.github.io/2018/04/13/webpack-4-tutorial-example-with-npm/ https://blog.csdn.net/fengmin_w/article/details/81984514 https://webpack.js. 阅读全文
posted @ 2019-04-27 20:46 connie313 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 使用了spring boot, gradle, commons-httpcomponent3. 目前httpclient 已经有了版本4. https://github.com/lvfe/httpClient https://github.com/lvfe/httpclient3 HttpClien 阅读全文
posted @ 2019-04-09 22:41 connie313 阅读(465) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页