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