Skip to content

Commit 1cac4b2

Browse files
committed
chore: ignore dead links
1 parent 37836e3 commit 1cac4b2

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

docs/.vitepress/config.mts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { defineConfig } from "vitepress";
22

33
export default defineConfig({
44
title: "advanced-java",
5+
ignoreDeadLinks: true,
56
themeConfig: {
67
search: {
78
provider: 'local'

docs/big-data/find-mid-value-in-500-millions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class MedianFinder {
5353
}
5454
```
5555

56-
> 见 LeetCode No.295https://leetcode.com/problems/find-median-from-data-stream/
56+
> [LeetCode No.295](https://leetcode.com/problems/find-median-from-data-stream/)
5757
5858
以上这种方法,需要把所有数据都加载到内存中。当数据量很大时,就不能这样了,因此,这种方法**适用于数据量较小的情况**。5 亿个数,每个数字占用 4B,总共需要 2G 内存。如果可用内存不足 2G,就不能使用这种方法了,下面介绍另一种方法。
5959

docs/extra-page/cover.md

-8
This file was deleted.

0 commit comments

Comments
 (0)