1 2 3 4 5 ··· 41 下一页
摘要: 背景 X上闲逛发现这样一个post 简单翻译一下,就是说如果针对无序数组(顺序不重要),要删除其中某个元素,比起费劲的移动很多元素,可以把要删除的元素和最后一个元素交换,然后减小数组的长度即可。 然后我看到回复中提到这样一个PR,针对dotnet runtime github PR地址:https: 阅读全文
posted @ 2024-09-12 10:55 talentzemin 阅读(16) 评论(0) 推荐(0) 编辑
摘要: LeetCode原题地址 https://leetcode.com/problems/daily-temperatures/ 题目介绍 Given an array of integers temperatures represents the daily temperatures, return 阅读全文
posted @ 2024-08-12 15:43 talentzemin 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 封面 本书示例代码均是C# 代码覆盖率 分支覆盖率 单元测试的定义 单元测试的两大派系 参考:https://www.thesunshinelayer.com/p/detroit-vs-london-schools-of-unit 3A模式 Given-When-Then 模式 .NET下的单元测试 阅读全文
posted @ 2024-07-09 11:08 talentzemin 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Ref https://www.tigera.io/blog/key-kubernetes-concepts/ 阅读全文
posted @ 2024-06-28 19:22 talentzemin 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2024.cnblogs.com/blog/474029/202406/474029-20240618230228608-376320921.png) ![](https://img2024.cnblogs.com/blog/474029/202406/474029-20240618230218226-1948902989.png) 阅读全文
posted @ 2024-06-18 23:02 talentzemin 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2024.cnblogs.com/blog/474029/202406/474029-20240612185630494-929489738.png) ![](https://img2024.cnblogs.com/blog/474029/202406/474029-20240612185706594-57773701.png) 阅读全文
posted @ 2024-06-12 18:57 talentzemin 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 拉取镜像 sudo docker pull onlyoffice/documentserver Run sudo docker run -i -t -d -p 8088:80 onlyoffice/documentserver Run with jwt secrct sudo docker run 阅读全文
posted @ 2024-05-30 18:23 talentzemin 阅读(41) 评论(0) 推荐(0) 编辑
摘要: Code namespace ConsoleApp { public class Cat { public string Name1 { get; set; } = "mimi"; public string Name2 = "mimi"; public string Name3 { get { r 阅读全文
posted @ 2024-05-10 15:44 talentzemin 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2024.cnblogs.com/blog/474029/202405/474029-20240510103956514-551748080.png) ![](https://img2024.cnblogs.com/blog/474029/202405/474029-20240510104133927-1289689619.png) ![](https://img20 阅读全文
posted @ 2024-05-10 11:02 talentzemin 阅读(2) 评论(0) 推荐(0) 编辑
摘要: using System; namespace ConsoleApp { public class Program { public static void Main(string[] args) { var hz = new[] { 392, 392, 440, 392, 523, 494, 39 阅读全文
posted @ 2024-05-10 10:18 talentzemin 阅读(21) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 41 下一页