From 6e9dd1351e3e5548af8288c983fded53a98ba8ef Mon Sep 17 00:00:00 2001 From: KayKong Date: Tue, 29 Jan 2019 11:46:00 +0800 Subject: [PATCH 1/2] =?UTF-8?q?Update=20=E8=AE=A1=E7=AE=97=E6=9C=BA?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E7=B3=BB=E7=BB=9F.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 或则 改为 或者 --- docs/notes/计算机操作系统.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/计算机操作系统.md b/docs/notes/计算机操作系统.md index 00856b65..35aefa5f 100644 --- a/docs/notes/计算机操作系统.md +++ b/docs/notes/计算机操作系统.md @@ -47,7 +47,7 @@ 并发是指宏观上在一段时间内能同时运行多个程序,而并行则指同一时刻能运行多个指令。 -并行需要硬件支持,如多流水线、多核处理器或则分布式计算系统。 +并行需要硬件支持,如多流水线、多核处理器或者分布式计算系统。 操作系统通过引入进程和线程,使得程序能够并发运行。 From af181cf1c60247758b7ac95d4ad498ec5c410505 Mon Sep 17 00:00:00 2001 From: rex Date: Tue, 29 Jan 2019 14:29:17 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E6=AD=A3leetcode=E9=A2=98?= =?UTF-8?q?=E8=A7=A3=E7=AC=94=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 只差->之差 --- docs/notes/Leetcode 题解.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/Leetcode 题解.md b/docs/notes/Leetcode 题解.md index 352dcbf3..5acc6093 100644 --- a/docs/notes/Leetcode 题解.md +++ b/docs/notes/Leetcode 题解.md @@ -5694,7 +5694,7 @@ Output: 5 Explanation: The longest harmonious subsequence is [3,2,2,2,3]. ``` -和谐序列中最大数和最小数只差正好为 1,应该注意的是序列的元素不一定是数组的连续元素。 +和谐序列中最大数和最小数之差正好为 1,应该注意的是序列的元素不一定是数组的连续元素。 ```java public int findLHS(int[] nums) {