387. First Unique Character in a String Easy Easy Easy Given a string, find the first non-repeating character in it and return it's index. If it doesn ...
分类:
其他好文 时间:
2019-11-17 10:59:59
阅读次数:
60
Given a non-empty array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runti ...
分类:
其他好文 时间:
2019-11-13 12:58:51
阅读次数:
98
Pathfinding is a task of finding a route between two points. It often appears in many problems. For example, in a GPS navigation software where a driv ...
分类:
其他好文 时间:
2019-11-09 12:09:09
阅读次数:
107
题目描述: Given an array of integers, every element appears twice except for one. Find that single one.Note: Your algorithm should have a linear runtime c ...
分类:
其他好文 时间:
2019-10-31 22:00:15
阅读次数:
117
JMETER + POST + anti-forgery token Looking into XSRF/CSRF Prevention in ASP.NET MVC and Web Pages it appears that you're either sending an incorrect _ ...
分类:
其他好文 时间:
2019-10-31 10:30:38
阅读次数:
142
ConcurrentLinkedQueue 主要讲一下在JDK8中,ConcurrentLikedQueue是如何入队,出队的。 首先我们要明白,ConcurrentLikedQueue是一种安全的没有边界的基于链表的队列,有头节点head,尾结点tail。 类似于 ,上图是创建一个空的队列,只有h ...
分类:
其他好文 时间:
2019-10-24 23:52:30
阅读次数:
177
1. os基础处理 os包中有一个string类型的切片变量os.Args,其用来处理一些基本的命令行参数,它在程序启动后读取命令行输入的参数。参数会放置在切片os.Args[]中(以空格分隔),从索引1开始(os.Args[0]放的是程序本身的名字)。 2. flag参数解析 flag包可以用来解 ...
分类:
其他好文 时间:
2019-10-03 12:28:35
阅读次数:
94
Given a non-empty array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runti ...
分类:
编程语言 时间:
2019-09-23 12:23:43
阅读次数:
118
LeetCode地址:https://leetcode.com/problems/single-number-ii/Problem:Given an array of integers, every element appears three times except for one. Find t... ...
分类:
其他好文 时间:
2019-09-02 12:01:13
阅读次数:
68
提示大概就是Vmware提示以独占方式锁定此配置文件失败,镇定查了查,理解好像就是字面意思,因为上一个进程没结束导致的程序锁死问题。 然后我开始找大家试过的解决方案,总结来说主要分为两大派: 1.打开任务资源管理器,暴力结束所有 VMware 相关进程 2.(或)删除Ubuntu安装目录下所有 .l ...
分类:
其他好文 时间:
2019-08-29 13:20:08
阅读次数:
94