  int{ 2 sum := 0 3 for _, v := range x{ 4 sum = sum + v 5 } 6 return sum 7 } 这个 ...
分类:
其他好文 时间:
2020-03-02 00:48:46
阅读次数:
61
1 package main 2 3 import ( 4 "fmt" 5 "strings" 6 ) 7 8 func main() { 9 //字符串的比较是按照字典顺序进行比较 a b c d e... 10 a:="Hella" 11 b:="helle" 12 i:=strings.Com ...
分类:
其他好文 时间:
2020-03-01 21:47:29
阅读次数:
78
什么是Spring Boot?Spring Boot is designed to get you up and run as quickily as possible.with minimal upfront configuration of spring.Spring Boot takes an... ...
分类:
编程语言 时间:
2020-03-01 19:47:10
阅读次数:
89
Array LeetCode Given an integer array of size n, find all elements that appear more than ? n/3 ? times. The algorithm should run in linear time and i.... ...
分类:
其他好文 时间:
2020-03-01 14:18:51
阅读次数:
71
?参考资料 [1]:Android Studio 在活动中使用Toast [2]:AndroidStudio自定义Toast及其用法 ?简介 Toast 是 Android 系统提供的一种非常好的提醒方式; 在程序中可以使用它将一些短小的信息通知给用户; 这些信息会在一段时间内自动消失,并且不会占用 ...
分类:
移动开发 时间:
2020-03-01 14:17:51
阅读次数:
141