摘要: leetcode刷题笔记五 最长回文子串 Scala版本 源地址: leetcode刷题笔记五 最长回文子串 Scala版本 问题描述 Given a string s, find the longest palindromic substring in s. You may assume that 阅读全文
posted @ 2020-04-07 17:12 ganshuoos 阅读(157) 评论(0) 推荐(0) 编辑
摘要: leetcode刷题笔记三 最长不重复子串 Scala版本 原地址:[https://leetcode.com/problems/longest-substring-without-repeating-characters/]:最长不重复子串 问题描述 题干: Given a string, fin 阅读全文
posted @ 2020-04-04 00:17 ganshuoos 阅读(128) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1676093/202003/1676093-20200330175856237-34511056.png) 阅读全文
posted @ 2020-03-30 17:59 ganshuoos 阅读(77) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1676093/202003/1676093-20200316000213694-1309792055.png) 阅读全文
posted @ 2020-03-16 00:02 ganshuoos 阅读(83) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2018.cnblogs.com/blog/1676093/202001/1676093-20200102174937549-2121813489.jpg) 阅读全文
posted @ 2020-01-02 17:50 ganshuoos 阅读(67) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2018.cnblogs.com/blog/1676093/201912/1676093-20191217175748842-1161831272.jpg) 阅读全文
posted @ 2019-12-17 17:58 ganshuoos 阅读(78) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2018.cnblogs.com/blog/1676093/201912/1676093-20191212152531269-375638798.jpg) 阅读全文
posted @ 2019-12-12 15:26 ganshuoos 阅读(90) 评论(0) 推荐(0) 编辑
摘要: Scala学习笔记 入门(二) 7.参数化 ~~~scala //值参数化 val big = new java.math.BigInteger("12345") //类型参数化 val greetStrings = new Array "String" greetStrings(0) = "Hel 阅读全文
posted @ 2019-12-04 16:19 ganshuoos 阅读(364) 评论(0) 推荐(0) 编辑
摘要: Httpie 工具学习笔记 ​ 1.安装 ​ Linux ~~~SHELL Debian, Ubuntu, etc. $ apt get install httpie Fedora $ yum install httpie Arch Linux $pacam S httpie ~~~ ​ Windo 阅读全文
posted @ 2019-12-03 14:41 ganshuoos 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Scala学习笔记 入门(一) 1.Scala解释器 ~~~scala $Scala scala 1+2 res0: Int = 3 ~~~ 解释器内容包括: 一个自动生成或者由用户定义的变量名,指向被计算出来的值(res0 : result 0) 一个冒号以及冒号后表达式结果类型(Int) 一个等 阅读全文
posted @ 2019-11-27 15:11 ganshuoos 阅读(136) 评论(0) 推荐(0) 编辑