// return int 0:错误的ip 4:ipv4 6:ipv6funcCheckIp(ip string)int{if ip ==""{return4}out := net.ParseIP(ip)if out ==nil{return0}if strings.Contains(out.String(),"."){return4}if strings.Contains(out.String(),":"){return6}return0}
funcipToInt(ip net.IP)int64{ip = ip.To4()if ip ==nil{return0}ipParts := strings.Split(ip.String(),".")ipInt :=int64(0)for i :=0; i <4; i++{part,_:= strconv.ParseInt(ipParts[i],10,64)ipInt += part <<((3-uint(i))*8)}return ipInt
}funcmain(){startIP :="183.62.142.241"endIP :="183.62.145.233"// ip格式校验start := net.ParseIP(startIP)if start ==nil{log.Fatal("Invalid start IP address")}end := net.ParseIP(endIP)if end ==nil{log.Fatal("Invalid end IP address")}startInt :=ipToInt(start)endInt :=ipToInt(end)count := endInt - startInt +1fmt.Printf("Number of IPs between %s and %s: %d\n", startIP, endIP, count)}
文章目录 C1475D Cleaning the Phone 题解Cleaning the Phone题面翻译题目描述输入格式输出格式样例 #1样例输入 #1样例输出 #1 提示算法:贪心代码: C1475D Cleaning the Phone 题解
link
Cleaning the Phone
题面翻译
题目大意:
有 n …
文章目录 业务场景错误提示分析过程解决办法 业务场景
settings.xml种配置了私服,但是有些依赖私服上没有,通过同事拷贝过来的。但是用maven打包时报红了。
错误提示
Idea Maven错误:was cached in the local repository, resolution will…
1.Pre-trained Large Language Models for Financial Sentiment Analysis 标题:用于金融情感分析的预训练大型语言模型 author:Wei Luo, Dihong Gong date Time:2024-01-10 paper pdf:http://arxiv.org/pdf/2401.05215v1
摘要: 金融情感分析是指将金融文本内容划分…