diff --git a/website/config.toml b/website/config.toml index 79a50ba0c..cea8d4a32 100644 --- a/website/config.toml +++ b/website/config.toml @@ -178,9 +178,8 @@ defaultContentLanguageInSubdir = true createIssueManually= true # If it is 'false', it is auto to make a Github issue when the administrators login. distractionFreeMode= true # Enable hot key (cmd|ctrl + enter) submit comment. # 登录代理:GitHub 的 /login/oauth/access_token 接口不返回 CORS 头,浏览器无法直接调用,必须经服务端中转。 - # 原来的 Heroku 免费应用已停服,故改为指向本站同源路径,由服务器反向代理到 GitHub。 - # 因为与站点同源(都是 books.halfrost.com),浏览器不触发 CORS,最稳。 - # 需要在服务器 web 配置里加一个反代到 https://github.com/login/oauth/access_token 的 location。 - # 完整且修好 502(SNI) 的 nginx 配置见 website/deploy/nginx-gitalk-oauth.conf。 - proxy= "https://books.halfrost.com/gitalk-oauth" + # 阿里云(大陆)服务器到 github.com 出网不稳定,nginx 直连会随机 502/504/404,配置再对也修不好。 + # 故改用 Cloudflare Worker(边缘到 github 稳定)做 token 交换,绕开阿里云出网。 + # Worker 源码见 website/deploy/gitalk-oauth-worker.js;nginx 直连方案(备用)见 website/deploy/nginx-gitalk-oauth.conf。 + proxy= "https://gitalk-oauth.ydz627.workers.dev" diff --git a/website/deploy/gitalk-oauth-worker.js b/website/deploy/gitalk-oauth-worker.js new file mode 100644 index 000000000..ab94227b6 --- /dev/null +++ b/website/deploy/gitalk-oauth-worker.js @@ -0,0 +1,59 @@ +// Gitalk OAuth 代理 —— Cloudflare Worker 版 +// 用途:替代 nginx 直连 GitHub 的方案。当「服务器到 github.com 出网不稳定」(随机 502/504/404)时, +// 把 token 交换放到 Cloudflare 边缘(到 github 稳定),彻底绕开你服务器的网络问题。 +// +// 部署(二选一): +// A. 仪表盘最简单: +// 1. Cloudflare 控制台 → Workers & Pages → Create → Create Worker +// 2. 把本文件内容整段贴进去 → Deploy +// 3. 记下分配的地址,形如 https://gitalk-oauth.<你的子域>.workers.dev +// B. 命令行:npm i -g wrangler && wrangler deploy +// +// 部署后改一行 config.toml: +// [params.gitalk] +// proxy = "https://gitalk-oauth.<你的子域>.workers.dev" +// 然后重新构建发布(npm run build)。 +// +// 注意:Worker 与站点不同源,必须返回 CORS 头(下面已处理);这点和原来的同源 nginx 代理不同。 + +const GITHUB_TOKEN_URL = 'https://github.com/login/oauth/access_token'; + +function corsHeaders() { + return { + 'Access-Control-Allow-Origin': '*', + 'Access-Control-Allow-Methods': 'POST, OPTIONS', + 'Access-Control-Allow-Headers': 'Content-Type, Accept', + }; +} + +export default { + async fetch(request) { + // 预检请求 + if (request.method === 'OPTIONS') { + return new Response(null, { headers: corsHeaders() }); + } + if (request.method !== 'POST') { + return new Response(JSON.stringify({ error: 'method_not_allowed' }), { + status: 405, + headers: { 'Content-Type': 'application/json', ...corsHeaders() }, + }); + } + + const body = await request.text(); + const ghResp = await fetch(GITHUB_TOKEN_URL, { + method: 'POST', + headers: { + 'Accept': 'application/json', + 'Content-Type': request.headers.get('Content-Type') || 'application/json', + 'User-Agent': 'gitalk-oauth-worker', + }, + body, + }); + + const respBody = await ghResp.text(); + return new Response(respBody, { + status: ghResp.status, + headers: { 'Content-Type': 'application/json', ...corsHeaders() }, + }); + }, +}; diff --git a/website/deploy/nginx-gitalk-oauth.conf b/website/deploy/nginx-gitalk-oauth.conf index caf1b810d..44b15d5bd 100644 --- a/website/deploy/nginx-gitalk-oauth.conf +++ b/website/deploy/nginx-gitalk-oauth.conf @@ -1,58 +1,63 @@ # Gitalk OAuth 反向代理 —— 修复点击「使用 GitHub 登录」报 -# Error: Request failed with status code 502 +# Error: Request failed with status code 502 / 504 # # 背景: # GitHub 的 token 接口 https://github.com/login/oauth/access_token 不返回 CORS 头, # 浏览器无法直接调用,必须由站点同源转发(config.toml 里 Gitalk.proxy = # https://books.halfrost.com/gitalk-oauth 就是指这里)。 # -# 关于 502 的定位(重要): -# 经实测,GitHub 端一切正常——不带 SNI 也能握手,直接 POST 返回 200(incorrect_client_credentials -# 的 JSON)。所以 502 是【本服务器侧】的故障,最常见两类: -# (1) 原来的 /gitalk-oauth 没有直连 GitHub,而是转发给一个本地中转程序 -# (gatekeeper / cors-anywhere 之类的 node 应用),该进程挂了 → nginx 502。 -# (2) 服务器到 github.com 出网被阻断/重置(国内主机常见)→ upstream 连接失败 → 502。 -# 下面的配置改成【nginx 直连 GitHub】,可消除 (1)。若换上后仍 502,基本就是 (2), -# 请看文件末尾的「仍然 502 怎么办」。 +# 关于 502/504 的定位(重要): +# GitHub 端一切正常(直接 POST 返回 200 的 incorrect_client_credentials JSON)。 +# halfrost 的原配置里 proxy_pass 路径 / Host / SNI 都是对的,但仍间歇 502/504, +# 根因在【上游连接健壮性】,按概率: +# (1) DNS 过期(最可能):proxy_pass 用字面量 github.com 时,nginx 只在【启动时】解析一次 IP +# 并一直沿用。GitHub 走 Fastly,IP 会轮换;启动时那个 IP 失效后 → 间歇 502/504。 +# => 用 resolver + 变量改成【请求时实时解析】。 +# (2) IPv6 陷阱:实时解析若返回 AAAA 而机器无 IPv6 出网 → 连接失败 502。=> resolver 加 ipv6=off。 +# (3) HTTP 版本:默认 proxy_http_version 1.0,升 1.1 + Connection "" 更稳。 +# 下面这版把以上三点都处理了。若换上后仍 502/504,看文件末尾「仍然 502 怎么办」拿 error.log 定位。 # -# 用法:把下面的 location 放进 books.halfrost.com 的 server {} 块,然后 +# 用法:把 books.halfrost.com server{} 里现有的 location = /gitalk-oauth 整段替换为下面这段,然后 # nginx -t && nginx -s reload # 验证: # curl -s -o /dev/null -w '%{http_code}\n' -X POST https://books.halfrost.com/gitalk-oauth \ # -H 'Accept: application/json' \ # -d 'client_id=x&client_secret=x&code=x' -# 修好后应返回 200(GitHub 回 incorrect_client_credentials 的 JSON,但 HTTP 状态是 200),不再是 502。 +# 修好后应返回 200(GitHub 回 incorrect_client_credentials 的 JSON,但 HTTP 状态是 200),不再是 502/504。 location = /gitalk-oauth { - proxy_http_version 1.1; - proxy_pass https://github.com/login/oauth/access_token; + # 请求时实时解析 github.com,避免 nginx 启动时缓存的 IP 轮换失效导致间歇 502/504; + # ipv6=off 防止返回 AAAA 而机器无 IPv6 出网导致连接失败。 + resolver 1.1.1.1 8.8.8.8 valid=60s ipv6=off; + set $gh_oauth https://github.com/login/oauth/access_token; + proxy_pass $gh_oauth; + proxy_http_version 1.1; + proxy_set_header Connection ""; proxy_set_header Host github.com; # GitHub 按 Host 路由 - proxy_ssl_server_name on; # 发送 SNI(最佳实践;某些网络下必需) + proxy_ssl_server_name on; # 发送 SNI proxy_ssl_name github.com; proxy_ssl_protocols TLSv1.2 TLSv1.3; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Accept application/json; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - # 连接到 GitHub 慢/不稳时,给足超时,避免过早 502 - proxy_connect_timeout 15s; - proxy_read_timeout 15s; - - # 若改用变量形式的 proxy_pass(set $up https://github.com;)才需要显式 DNS: - # resolver 1.1.1.1 8.8.8.8 valid=300s; + proxy_connect_timeout 10s; + proxy_send_timeout 10s; + proxy_read_timeout 10s; } -# ───────────────────────── 仍然 502 怎么办 ───────────────────────── -# 先看真正的报错(关键): +# ───────────────────────── 仍然 502/504 怎么办 ───────────────────────── +# 看真正的报错(关键,一句话就能定性): # tail -n 50 /var/log/nginx/error.log +# · "upstream timed out" → 服务器到 github 出网慢/被拦(见下方 Cloudflare 兜底) +# · "no live upstreams" / "could not be resolved" → DNS 问题(确认 resolver 生效) +# · "SSL_do_handshake() failed" → TLS/SNI 问题(确认 proxy_ssl_server_name on) # 再在【服务器上】直接测到 GitHub 的连通性: # curl -v -m 15 -X POST https://github.com/login/oauth/access_token \ # -H 'Accept: application/json' -d 'client_id=x&client_secret=x&code=x' -# · 若服务器上这条 curl 也连不上/超时/reset → 是服务器出网到 github 的问题(上面的(2)), -# nginx 配置再怎么改都没用。此时改用下面的 Cloudflare Worker 兜底(部署在 GitHub 可达的边缘)。 +# · 若服务器上这条 curl 也连不上/超时/reset → 是服务器出网到 github 的问题, +# nginx 配置再怎么改都没用,改用下面的 Cloudflare Worker 兜底(部署在 GitHub 可达的边缘)。 # # ── 兜底方案:Cloudflare Worker(绕开本服务器出网,免费)── # 1. 在 Cloudflare 新建一个 Worker,代码: diff --git a/website/package-lock.json b/website/package-lock.json index 58aa3e10a..2cb8d2793 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -5,6 +5,9 @@ "packages": { "": { "name": "leetcode-cookbook-website", + "dependencies": { + "puppeteer-core": "^25.2.1" + }, "devDependencies": { "workbox-cli": "^7.3.0" } @@ -1744,6 +1747,30 @@ "node": ">=12" } }, + "node_modules/@puppeteer/browsers": { + "version": "3.0.5", + "resolved": "https://bnpm.byted.org/@puppeteer/browsers/-/browsers-3.0.5.tgz", + "integrity": "sha512-xYXNuEQmHNIPWWcbL/skf2KF7seyp7c1xmKFRk3wmdFx7VwBsKVrtOLKs8ecaezsKPsWeF1YsgwIiElAscaryA==", + "license": "Apache-2.0", + "dependencies": { + "modern-tar": "^0.7.6", + "yargs": "^18.0.0" + }, + "bin": { + "browsers": "lib/main-cli.js" + }, + "engines": { + "node": ">=22.12.0" + }, + "peerDependencies": { + "proxy-agent": ">=8.0.1" + }, + "peerDependenciesMeta": { + "proxy-agent": { + "optional": true + } + } + }, "node_modules/@rollup/plugin-babel": { "version": "6.1.0", "resolved": "https://bnpm.byted.org/@rollup/plugin-babel/-/plugin-babel-6.1.0.tgz", @@ -2954,6 +2981,22 @@ "fsevents": "~2.3.2" } }, + "node_modules/chromium-bidi": { + "version": "16.0.1", + "resolved": "https://bnpm.byted.org/chromium-bidi/-/chromium-bidi-16.0.1.tgz", + "integrity": "sha512-J63PGu/9PpeCwLIcKYyzWP6yaVL5pxuBc0shlYCYM8BaAkmlwiQboXO1iNbOgSDbVklEyYFfNEcHD8oOAWacUA==", + "license": "Apache-2.0", + "dependencies": { + "mitt": "^3.0.1", + "zod": "^3.24.1" + }, + "engines": { + "node": ">=20.19.0 <22.0.0 || >=22.12.0" + }, + "peerDependencies": { + "devtools-protocol": "*" + } + }, "node_modules/cli-boxes": { "version": "3.0.0", "resolved": "https://bnpm.byted.org/cli-boxes/-/cli-boxes-3.0.0.tgz", @@ -3003,6 +3046,70 @@ "node": ">= 10" } }, + "node_modules/cliui": { + "version": "9.0.1", + "resolved": "https://bnpm.byted.org/cliui/-/cliui-9.0.1.tgz", + "integrity": "sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==", + "license": "ISC", + "dependencies": { + "string-width": "^7.2.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://bnpm.byted.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "10.6.0", + "resolved": "https://bnpm.byted.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", + "license": "MIT" + }, + "node_modules/cliui/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://bnpm.byted.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "7.2.0", + "resolved": "https://bnpm.byted.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/clone": { "version": "1.0.4", "resolved": "https://bnpm.byted.org/clone/-/clone-1.0.4.tgz", @@ -3311,6 +3418,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/devtools-protocol": { + "version": "0.0.1638949", + "resolved": "https://bnpm.byted.org/devtools-protocol/-/devtools-protocol-0.0.1638949.tgz", + "integrity": "sha512-mXwg4Fqnv0WR4iuAT/gYUmctNkjILwXFHyZ+m7Ty1dfr0ezZt2U3gnrrJTfRobJTHoXf+IbuFvFITzLrLFjwJA==", + "license": "BSD-3-Clause" + }, "node_modules/dot-prop": { "version": "9.0.0", "resolved": "https://bnpm.byted.org/dot-prop/-/dot-prop-9.0.0.tgz", @@ -3557,7 +3670,6 @@ "version": "3.2.0", "resolved": "https://bnpm.byted.org/escalade/-/escalade-3.2.0.tgz", "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -3873,11 +3985,19 @@ "node": ">=6.9.0" } }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://bnpm.byted.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, "node_modules/get-east-asian-width": { "version": "1.6.0", "resolved": "https://bnpm.byted.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz", "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==", - "dev": true, "license": "MIT", "engines": { "node": ">=18" @@ -5208,6 +5328,21 @@ "node": ">=16 || 14 >=14.17" } }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://bnpm.byted.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "license": "MIT" + }, + "node_modules/modern-tar": { + "version": "0.7.6", + "resolved": "https://bnpm.byted.org/modern-tar/-/modern-tar-0.7.6.tgz", + "integrity": "sha512-sweCIVXzx1aIGTCdzcMlSZt1h8k5Tmk08VNAuRk3IU28XamGiOH5ypi11g6De2CH7PhYqSSnGy2A/EFhbWnVKg==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + } + }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://bnpm.byted.org/ms/-/ms-2.1.3.tgz", @@ -5584,6 +5719,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/puppeteer-core": { + "version": "25.2.1", + "resolved": "https://bnpm.byted.org/puppeteer-core/-/puppeteer-core-25.2.1.tgz", + "integrity": "sha512-MwEZ4FFGJ1ZLOmu/04eISxoEMKtCnHyJBRFfgpwPPSYNG6gT6Xw1laNziFSV7uwDcx3jK+ATYIo9SfOd8Uhc3w==", + "license": "Apache-2.0", + "dependencies": { + "@puppeteer/browsers": "3.0.5", + "chromium-bidi": "16.0.1", + "devtools-protocol": "0.0.1638949", + "typed-query-selector": "^2.12.2", + "webdriver-bidi-protocol": "0.4.2", + "ws": "^8.21.0" + }, + "engines": { + "node": ">=22.12.0" + } + }, "node_modules/quick-lru": { "version": "4.0.1", "resolved": "https://bnpm.byted.org/quick-lru/-/quick-lru-4.0.1.tgz", @@ -6753,6 +6905,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/typed-query-selector": { + "version": "2.12.2", + "resolved": "https://bnpm.byted.org/typed-query-selector/-/typed-query-selector-2.12.2.tgz", + "integrity": "sha512-EOPFbyIub4ngnEdqi2yOcNeDLaX/0jcE1JoAXQDDMIthap7FoN795lc/SHfIq2d416VufXpM8z/lD+WRm2gfOQ==", + "license": "MIT" + }, "node_modules/unbox-primitive": { "version": "1.1.0", "resolved": "https://bnpm.byted.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", @@ -6960,6 +7118,12 @@ "defaults": "^1.0.3" } }, + "node_modules/webdriver-bidi-protocol": { + "version": "0.4.2", + "resolved": "https://bnpm.byted.org/webdriver-bidi-protocol/-/webdriver-bidi-protocol-0.4.2.tgz", + "integrity": "sha512-VSV+fzfChirL3e7jay2yUC7B4HQCGtEWEg/MSSQbK+qWbqeGlRLlXTzPpYr3XGUvbpDHumWZBJxgesg4N7dbtA==", + "license": "Apache-2.0" + }, "node_modules/webidl-conversions": { "version": "4.0.2", "resolved": "https://bnpm.byted.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", @@ -7400,7 +7564,6 @@ "version": "9.0.2", "resolved": "https://bnpm.byted.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^6.2.1", @@ -7418,7 +7581,6 @@ "version": "6.2.2", "resolved": "https://bnpm.byted.org/ansi-regex/-/ansi-regex-6.2.2.tgz", "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", - "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -7431,7 +7593,6 @@ "version": "6.2.3", "resolved": "https://bnpm.byted.org/ansi-styles/-/ansi-styles-6.2.3.tgz", "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", - "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -7444,14 +7605,12 @@ "version": "10.6.0", "resolved": "https://bnpm.byted.org/emoji-regex/-/emoji-regex-10.6.0.tgz", "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", - "dev": true, "license": "MIT" }, "node_modules/wrap-ansi/node_modules/string-width": { "version": "7.2.0", "resolved": "https://bnpm.byted.org/string-width/-/string-width-7.2.0.tgz", "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "dev": true, "license": "MIT", "dependencies": { "emoji-regex": "^10.3.0", @@ -7469,7 +7628,6 @@ "version": "7.2.0", "resolved": "https://bnpm.byted.org/strip-ansi/-/strip-ansi-7.2.0.tgz", "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", - "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^6.2.2" @@ -7481,6 +7639,27 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, + "node_modules/ws": { + "version": "8.21.0", + "resolved": "https://bnpm.byted.org/ws/-/ws-8.21.0.tgz", + "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, "node_modules/xdg-basedir": { "version": "5.1.0", "resolved": "https://bnpm.byted.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", @@ -7494,6 +7673,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://bnpm.byted.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, "node_modules/yallist": { "version": "3.1.1", "resolved": "https://bnpm.byted.org/yallist/-/yallist-3.1.1.tgz", @@ -7501,6 +7689,23 @@ "dev": true, "license": "ISC" }, + "node_modules/yargs": { + "version": "18.0.0", + "resolved": "https://bnpm.byted.org/yargs/-/yargs-18.0.0.tgz", + "integrity": "sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==", + "license": "MIT", + "dependencies": { + "cliui": "^9.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "string-width": "^7.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^22.0.0" + }, + "engines": { + "node": "^20.19.0 || ^22.12.0 || >=23" + } + }, "node_modules/yargs-parser": { "version": "18.1.3", "resolved": "https://bnpm.byted.org/yargs-parser/-/yargs-parser-18.1.3.tgz", @@ -7514,6 +7719,74 @@ "engines": { "node": ">=6" } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://bnpm.byted.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "10.6.0", + "resolved": "https://bnpm.byted.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", + "license": "MIT" + }, + "node_modules/yargs/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://bnpm.byted.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "7.2.0", + "resolved": "https://bnpm.byted.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "22.0.0", + "resolved": "https://bnpm.byted.org/yargs-parser/-/yargs-parser-22.0.0.tgz", + "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==", + "license": "ISC", + "engines": { + "node": "^20.19.0 || ^22.12.0 || >=23" + } + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://bnpm.byted.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } } } } diff --git a/website/package.json b/website/package.json index cd416e1bc..35dfe0c0d 100644 --- a/website/package.json +++ b/website/package.json @@ -9,5 +9,8 @@ }, "devDependencies": { "workbox-cli": "^7.3.0" + }, + "dependencies": { + "puppeteer-core": "^25.2.1" } } diff --git a/website/public/en/ChapterFour/0001~0099/0001.Two-Sum/index.html b/website/public/en/ChapterFour/0001~0099/0001.Two-Sum/index.html index ac1795014..d5cdf87a4 100644 --- a/website/public/en/ChapterFour/0001~0099/0001.Two-Sum/index.html +++ b/website/public/en/ChapterFour/0001~0099/0001.Two-Sum/index.html @@ -12345,7 +12345,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0002.Add-Two-Numbers/index.html b/website/public/en/ChapterFour/0001~0099/0002.Add-Two-Numbers/index.html index 9ad76a445..d487a05d1 100644 --- a/website/public/en/ChapterFour/0001~0099/0002.Add-Two-Numbers/index.html +++ b/website/public/en/ChapterFour/0001~0099/0002.Add-Two-Numbers/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0003.Longest-Substring-Without-Repeating-Characters/index.html b/website/public/en/ChapterFour/0001~0099/0003.Longest-Substring-Without-Repeating-Characters/index.html index 321dce0c6..2abed3517 100644 --- a/website/public/en/ChapterFour/0001~0099/0003.Longest-Substring-Without-Repeating-Characters/index.html +++ b/website/public/en/ChapterFour/0001~0099/0003.Longest-Substring-Without-Repeating-Characters/index.html @@ -12416,7 +12416,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0004.Median-of-Two-Sorted-Arrays/index.html b/website/public/en/ChapterFour/0001~0099/0004.Median-of-Two-Sorted-Arrays/index.html index 6319f8026..fe9c5403a 100644 --- a/website/public/en/ChapterFour/0001~0099/0004.Median-of-Two-Sorted-Arrays/index.html +++ b/website/public/en/ChapterFour/0001~0099/0004.Median-of-Two-Sorted-Arrays/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0005.Longest-Palindromic-Substring/index.html b/website/public/en/ChapterFour/0001~0099/0005.Longest-Palindromic-Substring/index.html index c546bbe72..4f144e53c 100644 --- a/website/public/en/ChapterFour/0001~0099/0005.Longest-Palindromic-Substring/index.html +++ b/website/public/en/ChapterFour/0001~0099/0005.Longest-Palindromic-Substring/index.html @@ -12492,7 +12492,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0006.ZigZag-Conversion/index.html b/website/public/en/ChapterFour/0001~0099/0006.ZigZag-Conversion/index.html index 441f326b5..d64591871 100644 --- a/website/public/en/ChapterFour/0001~0099/0006.ZigZag-Conversion/index.html +++ b/website/public/en/ChapterFour/0001~0099/0006.ZigZag-Conversion/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0007.Reverse-Integer/index.html b/website/public/en/ChapterFour/0001~0099/0007.Reverse-Integer/index.html index 8974feeec..60c9fbe0d 100644 --- a/website/public/en/ChapterFour/0001~0099/0007.Reverse-Integer/index.html +++ b/website/public/en/ChapterFour/0001~0099/0007.Reverse-Integer/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0008.String-to-Integer-atoi/index.html b/website/public/en/ChapterFour/0001~0099/0008.String-to-Integer-atoi/index.html index 5bdcc2731..674be2e33 100644 --- a/website/public/en/ChapterFour/0001~0099/0008.String-to-Integer-atoi/index.html +++ b/website/public/en/ChapterFour/0001~0099/0008.String-to-Integer-atoi/index.html @@ -12474,7 +12474,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0009.Palindrome-Number/index.html b/website/public/en/ChapterFour/0001~0099/0009.Palindrome-Number/index.html index 76207063e..71b264a4a 100644 --- a/website/public/en/ChapterFour/0001~0099/0009.Palindrome-Number/index.html +++ b/website/public/en/ChapterFour/0001~0099/0009.Palindrome-Number/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0011.Container-With-Most-Water/index.html b/website/public/en/ChapterFour/0001~0099/0011.Container-With-Most-Water/index.html index 4996b6b28..d78e04014 100644 --- a/website/public/en/ChapterFour/0001~0099/0011.Container-With-Most-Water/index.html +++ b/website/public/en/ChapterFour/0001~0099/0011.Container-With-Most-Water/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0012.Integer-to-Roman/index.html b/website/public/en/ChapterFour/0001~0099/0012.Integer-to-Roman/index.html index 3a066022b..f7238b89f 100644 --- a/website/public/en/ChapterFour/0001~0099/0012.Integer-to-Roman/index.html +++ b/website/public/en/ChapterFour/0001~0099/0012.Integer-to-Roman/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0013.Roman-to-Integer/index.html b/website/public/en/ChapterFour/0001~0099/0013.Roman-to-Integer/index.html index eec1493a0..640964d59 100644 --- a/website/public/en/ChapterFour/0001~0099/0013.Roman-to-Integer/index.html +++ b/website/public/en/ChapterFour/0001~0099/0013.Roman-to-Integer/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0014.Longest-Common-Prefix/index.html b/website/public/en/ChapterFour/0001~0099/0014.Longest-Common-Prefix/index.html index e0c13f46f..0dcdbb91c 100644 --- a/website/public/en/ChapterFour/0001~0099/0014.Longest-Common-Prefix/index.html +++ b/website/public/en/ChapterFour/0001~0099/0014.Longest-Common-Prefix/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0015.3Sum/index.html b/website/public/en/ChapterFour/0001~0099/0015.3Sum/index.html index 467cf352f..516ad8506 100644 --- a/website/public/en/ChapterFour/0001~0099/0015.3Sum/index.html +++ b/website/public/en/ChapterFour/0001~0099/0015.3Sum/index.html @@ -12412,7 +12412,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0016.3Sum-Closest/index.html b/website/public/en/ChapterFour/0001~0099/0016.3Sum-Closest/index.html index 8ff56402f..7eac6e3bd 100644 --- a/website/public/en/ChapterFour/0001~0099/0016.3Sum-Closest/index.html +++ b/website/public/en/ChapterFour/0001~0099/0016.3Sum-Closest/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0017.Letter-Combinations-of-a-Phone-Number/index.html b/website/public/en/ChapterFour/0001~0099/0017.Letter-Combinations-of-a-Phone-Number/index.html index 642fc5acc..72a6dfc82 100644 --- a/website/public/en/ChapterFour/0001~0099/0017.Letter-Combinations-of-a-Phone-Number/index.html +++ b/website/public/en/ChapterFour/0001~0099/0017.Letter-Combinations-of-a-Phone-Number/index.html @@ -12440,7 +12440,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0018.4Sum/index.html b/website/public/en/ChapterFour/0001~0099/0018.4Sum/index.html index 18477da3b..2f43016ae 100644 --- a/website/public/en/ChapterFour/0001~0099/0018.4Sum/index.html +++ b/website/public/en/ChapterFour/0001~0099/0018.4Sum/index.html @@ -12476,7 +12476,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0019.Remove-Nth-Node-From-End-of-List/index.html b/website/public/en/ChapterFour/0001~0099/0019.Remove-Nth-Node-From-End-of-List/index.html index bce31abd7..98bfaa803 100644 --- a/website/public/en/ChapterFour/0001~0099/0019.Remove-Nth-Node-From-End-of-List/index.html +++ b/website/public/en/ChapterFour/0001~0099/0019.Remove-Nth-Node-From-End-of-List/index.html @@ -12418,7 +12418,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0020.Valid-Parentheses/index.html b/website/public/en/ChapterFour/0001~0099/0020.Valid-Parentheses/index.html index 389550bb3..5f3e0cdab 100644 --- a/website/public/en/ChapterFour/0001~0099/0020.Valid-Parentheses/index.html +++ b/website/public/en/ChapterFour/0001~0099/0020.Valid-Parentheses/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0021.Merge-Two-Sorted-Lists/index.html b/website/public/en/ChapterFour/0001~0099/0021.Merge-Two-Sorted-Lists/index.html index 6b0daca9d..564b1396f 100644 --- a/website/public/en/ChapterFour/0001~0099/0021.Merge-Two-Sorted-Lists/index.html +++ b/website/public/en/ChapterFour/0001~0099/0021.Merge-Two-Sorted-Lists/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0022.Generate-Parentheses/index.html b/website/public/en/ChapterFour/0001~0099/0022.Generate-Parentheses/index.html index 7cf7d90a0..3d5f3ab5f 100644 --- a/website/public/en/ChapterFour/0001~0099/0022.Generate-Parentheses/index.html +++ b/website/public/en/ChapterFour/0001~0099/0022.Generate-Parentheses/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0023.Merge-k-Sorted-Lists/index.html b/website/public/en/ChapterFour/0001~0099/0023.Merge-k-Sorted-Lists/index.html index b7c23f62a..69789f8d6 100644 --- a/website/public/en/ChapterFour/0001~0099/0023.Merge-k-Sorted-Lists/index.html +++ b/website/public/en/ChapterFour/0001~0099/0023.Merge-k-Sorted-Lists/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0024.Swap-Nodes-in-Pairs/index.html b/website/public/en/ChapterFour/0001~0099/0024.Swap-Nodes-in-Pairs/index.html index 6ade2bf25..7ad37bf1d 100644 --- a/website/public/en/ChapterFour/0001~0099/0024.Swap-Nodes-in-Pairs/index.html +++ b/website/public/en/ChapterFour/0001~0099/0024.Swap-Nodes-in-Pairs/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0025.Reverse-Nodes-in-k-Group/index.html b/website/public/en/ChapterFour/0001~0099/0025.Reverse-Nodes-in-k-Group/index.html index a9be4e948..d644be390 100644 --- a/website/public/en/ChapterFour/0001~0099/0025.Reverse-Nodes-in-k-Group/index.html +++ b/website/public/en/ChapterFour/0001~0099/0025.Reverse-Nodes-in-k-Group/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0026.Remove-Duplicates-from-Sorted-Array/index.html b/website/public/en/ChapterFour/0001~0099/0026.Remove-Duplicates-from-Sorted-Array/index.html index ecb016493..1b41479c1 100644 --- a/website/public/en/ChapterFour/0001~0099/0026.Remove-Duplicates-from-Sorted-Array/index.html +++ b/website/public/en/ChapterFour/0001~0099/0026.Remove-Duplicates-from-Sorted-Array/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0027.Remove-Element/index.html b/website/public/en/ChapterFour/0001~0099/0027.Remove-Element/index.html index 185f2e11a..460eb1711 100644 --- a/website/public/en/ChapterFour/0001~0099/0027.Remove-Element/index.html +++ b/website/public/en/ChapterFour/0001~0099/0027.Remove-Element/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0028.Find-the-Index-of-the-First-Occurrence-in-a-String/index.html b/website/public/en/ChapterFour/0001~0099/0028.Find-the-Index-of-the-First-Occurrence-in-a-String/index.html index cab00569f..30e088ac2 100644 --- a/website/public/en/ChapterFour/0001~0099/0028.Find-the-Index-of-the-First-Occurrence-in-a-String/index.html +++ b/website/public/en/ChapterFour/0001~0099/0028.Find-the-Index-of-the-First-Occurrence-in-a-String/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0029.Divide-Two-Integers/index.html b/website/public/en/ChapterFour/0001~0099/0029.Divide-Two-Integers/index.html index 98b8f1afd..f12116031 100644 --- a/website/public/en/ChapterFour/0001~0099/0029.Divide-Two-Integers/index.html +++ b/website/public/en/ChapterFour/0001~0099/0029.Divide-Two-Integers/index.html @@ -12455,7 +12455,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0030.Substring-with-Concatenation-of-All-Words/index.html b/website/public/en/ChapterFour/0001~0099/0030.Substring-with-Concatenation-of-All-Words/index.html index 98bd9e7f8..09aad6399 100644 --- a/website/public/en/ChapterFour/0001~0099/0030.Substring-with-Concatenation-of-All-Words/index.html +++ b/website/public/en/ChapterFour/0001~0099/0030.Substring-with-Concatenation-of-All-Words/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0031.Next-Permutation/index.html b/website/public/en/ChapterFour/0001~0099/0031.Next-Permutation/index.html index 39ac56ef5..d4ff973b4 100644 --- a/website/public/en/ChapterFour/0001~0099/0031.Next-Permutation/index.html +++ b/website/public/en/ChapterFour/0001~0099/0031.Next-Permutation/index.html @@ -12422,7 +12422,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0032.Longest-Valid-Parentheses/index.html b/website/public/en/ChapterFour/0001~0099/0032.Longest-Valid-Parentheses/index.html index a40f73634..2980dc601 100644 --- a/website/public/en/ChapterFour/0001~0099/0032.Longest-Valid-Parentheses/index.html +++ b/website/public/en/ChapterFour/0001~0099/0032.Longest-Valid-Parentheses/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0033.Search-in-Rotated-Sorted-Array/index.html b/website/public/en/ChapterFour/0001~0099/0033.Search-in-Rotated-Sorted-Array/index.html index bc0fa50a9..61b23c7df 100644 --- a/website/public/en/ChapterFour/0001~0099/0033.Search-in-Rotated-Sorted-Array/index.html +++ b/website/public/en/ChapterFour/0001~0099/0033.Search-in-Rotated-Sorted-Array/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0034.Find-First-and-Last-Position-of-Element-in-Sorted-Array/index.html b/website/public/en/ChapterFour/0001~0099/0034.Find-First-and-Last-Position-of-Element-in-Sorted-Array/index.html index aacc7c0c2..7d4d3cade 100644 --- a/website/public/en/ChapterFour/0001~0099/0034.Find-First-and-Last-Position-of-Element-in-Sorted-Array/index.html +++ b/website/public/en/ChapterFour/0001~0099/0034.Find-First-and-Last-Position-of-Element-in-Sorted-Array/index.html @@ -12427,7 +12427,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0035.Search-Insert-Position/index.html b/website/public/en/ChapterFour/0001~0099/0035.Search-Insert-Position/index.html index b2d25e542..6982a1d76 100644 --- a/website/public/en/ChapterFour/0001~0099/0035.Search-Insert-Position/index.html +++ b/website/public/en/ChapterFour/0001~0099/0035.Search-Insert-Position/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0036.Valid-Sudoku/index.html b/website/public/en/ChapterFour/0001~0099/0036.Valid-Sudoku/index.html index 9cab53b93..8b05fa3a3 100644 --- a/website/public/en/ChapterFour/0001~0099/0036.Valid-Sudoku/index.html +++ b/website/public/en/ChapterFour/0001~0099/0036.Valid-Sudoku/index.html @@ -12461,7 +12461,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0037.Sudoku-Solver/index.html b/website/public/en/ChapterFour/0001~0099/0037.Sudoku-Solver/index.html index 4225483e2..1d2567b87 100644 --- a/website/public/en/ChapterFour/0001~0099/0037.Sudoku-Solver/index.html +++ b/website/public/en/ChapterFour/0001~0099/0037.Sudoku-Solver/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0039.Combination-Sum/index.html b/website/public/en/ChapterFour/0001~0099/0039.Combination-Sum/index.html index 131dda9f5..ca53d5f04 100644 --- a/website/public/en/ChapterFour/0001~0099/0039.Combination-Sum/index.html +++ b/website/public/en/ChapterFour/0001~0099/0039.Combination-Sum/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0040.Combination-Sum-II/index.html b/website/public/en/ChapterFour/0001~0099/0040.Combination-Sum-II/index.html index b34f0e2dd..fc2edd77a 100644 --- a/website/public/en/ChapterFour/0001~0099/0040.Combination-Sum-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0040.Combination-Sum-II/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0041.First-Missing-Positive/index.html b/website/public/en/ChapterFour/0001~0099/0041.First-Missing-Positive/index.html index f7d85da0a..82b6951e9 100644 --- a/website/public/en/ChapterFour/0001~0099/0041.First-Missing-Positive/index.html +++ b/website/public/en/ChapterFour/0001~0099/0041.First-Missing-Positive/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0042.Trapping-Rain-Water/index.html b/website/public/en/ChapterFour/0001~0099/0042.Trapping-Rain-Water/index.html index 47d1e4eea..42bfc8c7e 100644 --- a/website/public/en/ChapterFour/0001~0099/0042.Trapping-Rain-Water/index.html +++ b/website/public/en/ChapterFour/0001~0099/0042.Trapping-Rain-Water/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0043.Multiply-Strings/index.html b/website/public/en/ChapterFour/0001~0099/0043.Multiply-Strings/index.html index af56c1255..dffc14398 100644 --- a/website/public/en/ChapterFour/0001~0099/0043.Multiply-Strings/index.html +++ b/website/public/en/ChapterFour/0001~0099/0043.Multiply-Strings/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0045.Jump-Game-II/index.html b/website/public/en/ChapterFour/0001~0099/0045.Jump-Game-II/index.html index e4d437fab..e6856a990 100644 --- a/website/public/en/ChapterFour/0001~0099/0045.Jump-Game-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0045.Jump-Game-II/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0046.Permutations/index.html b/website/public/en/ChapterFour/0001~0099/0046.Permutations/index.html index 944e7135b..06c8b2d4a 100644 --- a/website/public/en/ChapterFour/0001~0099/0046.Permutations/index.html +++ b/website/public/en/ChapterFour/0001~0099/0046.Permutations/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0047.Permutations-II/index.html b/website/public/en/ChapterFour/0001~0099/0047.Permutations-II/index.html index a2edc653d..7eecea019 100644 --- a/website/public/en/ChapterFour/0001~0099/0047.Permutations-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0047.Permutations-II/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0048.Rotate-Image/index.html b/website/public/en/ChapterFour/0001~0099/0048.Rotate-Image/index.html index fa2b47850..64c687586 100644 --- a/website/public/en/ChapterFour/0001~0099/0048.Rotate-Image/index.html +++ b/website/public/en/ChapterFour/0001~0099/0048.Rotate-Image/index.html @@ -12461,7 +12461,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0049.Group-Anagrams/index.html b/website/public/en/ChapterFour/0001~0099/0049.Group-Anagrams/index.html index 5cba49583..0f2d81d95 100644 --- a/website/public/en/ChapterFour/0001~0099/0049.Group-Anagrams/index.html +++ b/website/public/en/ChapterFour/0001~0099/0049.Group-Anagrams/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0050.Powx-n/index.html b/website/public/en/ChapterFour/0001~0099/0050.Powx-n/index.html index d740cd0f9..83c2d17c6 100644 --- a/website/public/en/ChapterFour/0001~0099/0050.Powx-n/index.html +++ b/website/public/en/ChapterFour/0001~0099/0050.Powx-n/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0051.N-Queens/index.html b/website/public/en/ChapterFour/0001~0099/0051.N-Queens/index.html index ba8c65560..e28ae6de2 100644 --- a/website/public/en/ChapterFour/0001~0099/0051.N-Queens/index.html +++ b/website/public/en/ChapterFour/0001~0099/0051.N-Queens/index.html @@ -12441,7 +12441,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0052.N-Queens-II/index.html b/website/public/en/ChapterFour/0001~0099/0052.N-Queens-II/index.html index 2b482d310..bdc3a75b0 100644 --- a/website/public/en/ChapterFour/0001~0099/0052.N-Queens-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0052.N-Queens-II/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0053.Maximum-Subarray/index.html b/website/public/en/ChapterFour/0001~0099/0053.Maximum-Subarray/index.html index de15ad833..2d16b2d1e 100644 --- a/website/public/en/ChapterFour/0001~0099/0053.Maximum-Subarray/index.html +++ b/website/public/en/ChapterFour/0001~0099/0053.Maximum-Subarray/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0054.Spiral-Matrix/index.html b/website/public/en/ChapterFour/0001~0099/0054.Spiral-Matrix/index.html index ba5f02d34..ffe412426 100644 --- a/website/public/en/ChapterFour/0001~0099/0054.Spiral-Matrix/index.html +++ b/website/public/en/ChapterFour/0001~0099/0054.Spiral-Matrix/index.html @@ -12463,7 +12463,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0055.Jump-Game/index.html b/website/public/en/ChapterFour/0001~0099/0055.Jump-Game/index.html index 36daa334e..269933c21 100644 --- a/website/public/en/ChapterFour/0001~0099/0055.Jump-Game/index.html +++ b/website/public/en/ChapterFour/0001~0099/0055.Jump-Game/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0056.Merge-Intervals/index.html b/website/public/en/ChapterFour/0001~0099/0056.Merge-Intervals/index.html index b597ba7c5..f52944dbe 100644 --- a/website/public/en/ChapterFour/0001~0099/0056.Merge-Intervals/index.html +++ b/website/public/en/ChapterFour/0001~0099/0056.Merge-Intervals/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0057.Insert-Interval/index.html b/website/public/en/ChapterFour/0001~0099/0057.Insert-Interval/index.html index faf184549..d9bd137b9 100644 --- a/website/public/en/ChapterFour/0001~0099/0057.Insert-Interval/index.html +++ b/website/public/en/ChapterFour/0001~0099/0057.Insert-Interval/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0058.Length-of-Last-Word/index.html b/website/public/en/ChapterFour/0001~0099/0058.Length-of-Last-Word/index.html index bb00acf9b..63f1db10f 100644 --- a/website/public/en/ChapterFour/0001~0099/0058.Length-of-Last-Word/index.html +++ b/website/public/en/ChapterFour/0001~0099/0058.Length-of-Last-Word/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0059.Spiral-Matrix-II/index.html b/website/public/en/ChapterFour/0001~0099/0059.Spiral-Matrix-II/index.html index 958652095..bfb56ac89 100644 --- a/website/public/en/ChapterFour/0001~0099/0059.Spiral-Matrix-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0059.Spiral-Matrix-II/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0060.Permutation-Sequence/index.html b/website/public/en/ChapterFour/0001~0099/0060.Permutation-Sequence/index.html index 376a87224..61cc85ca1 100644 --- a/website/public/en/ChapterFour/0001~0099/0060.Permutation-Sequence/index.html +++ b/website/public/en/ChapterFour/0001~0099/0060.Permutation-Sequence/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0061.Rotate-List/index.html b/website/public/en/ChapterFour/0001~0099/0061.Rotate-List/index.html index ce3bea5e6..ef8239ebf 100644 --- a/website/public/en/ChapterFour/0001~0099/0061.Rotate-List/index.html +++ b/website/public/en/ChapterFour/0001~0099/0061.Rotate-List/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0062.Unique-Paths/index.html b/website/public/en/ChapterFour/0001~0099/0062.Unique-Paths/index.html index c9c1c54b5..19d3f8177 100644 --- a/website/public/en/ChapterFour/0001~0099/0062.Unique-Paths/index.html +++ b/website/public/en/ChapterFour/0001~0099/0062.Unique-Paths/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0063.Unique-Paths-II/index.html b/website/public/en/ChapterFour/0001~0099/0063.Unique-Paths-II/index.html index 911b7ae42..15a6e28f2 100644 --- a/website/public/en/ChapterFour/0001~0099/0063.Unique-Paths-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0063.Unique-Paths-II/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0064.Minimum-Path-Sum/index.html b/website/public/en/ChapterFour/0001~0099/0064.Minimum-Path-Sum/index.html index 136d9a0c0..484f80aee 100644 --- a/website/public/en/ChapterFour/0001~0099/0064.Minimum-Path-Sum/index.html +++ b/website/public/en/ChapterFour/0001~0099/0064.Minimum-Path-Sum/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0065.Valid-Number/index.html b/website/public/en/ChapterFour/0001~0099/0065.Valid-Number/index.html index cb24ff2ca..35c408074 100644 --- a/website/public/en/ChapterFour/0001~0099/0065.Valid-Number/index.html +++ b/website/public/en/ChapterFour/0001~0099/0065.Valid-Number/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0066.Plus-One/index.html b/website/public/en/ChapterFour/0001~0099/0066.Plus-One/index.html index 97f76aeb9..556d1b05c 100644 --- a/website/public/en/ChapterFour/0001~0099/0066.Plus-One/index.html +++ b/website/public/en/ChapterFour/0001~0099/0066.Plus-One/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0067.Add-Binary/index.html b/website/public/en/ChapterFour/0001~0099/0067.Add-Binary/index.html index e359169e2..2fbc61ffb 100644 --- a/website/public/en/ChapterFour/0001~0099/0067.Add-Binary/index.html +++ b/website/public/en/ChapterFour/0001~0099/0067.Add-Binary/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0069.Sqrtx/index.html b/website/public/en/ChapterFour/0001~0099/0069.Sqrtx/index.html index a9b249635..f13d0222c 100644 --- a/website/public/en/ChapterFour/0001~0099/0069.Sqrtx/index.html +++ b/website/public/en/ChapterFour/0001~0099/0069.Sqrtx/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0070.Climbing-Stairs/index.html b/website/public/en/ChapterFour/0001~0099/0070.Climbing-Stairs/index.html index bb4083b99..3ed162046 100644 --- a/website/public/en/ChapterFour/0001~0099/0070.Climbing-Stairs/index.html +++ b/website/public/en/ChapterFour/0001~0099/0070.Climbing-Stairs/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0071.Simplify-Path/index.html b/website/public/en/ChapterFour/0001~0099/0071.Simplify-Path/index.html index 1f619c7da..ca71881e6 100644 --- a/website/public/en/ChapterFour/0001~0099/0071.Simplify-Path/index.html +++ b/website/public/en/ChapterFour/0001~0099/0071.Simplify-Path/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0073.Set-Matrix-Zeroes/index.html b/website/public/en/ChapterFour/0001~0099/0073.Set-Matrix-Zeroes/index.html index 59e325941..189029314 100644 --- a/website/public/en/ChapterFour/0001~0099/0073.Set-Matrix-Zeroes/index.html +++ b/website/public/en/ChapterFour/0001~0099/0073.Set-Matrix-Zeroes/index.html @@ -12399,7 +12399,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0074.Search-a-2D-Matrix/index.html b/website/public/en/ChapterFour/0001~0099/0074.Search-a-2D-Matrix/index.html index 3432888d8..1a2d4eb76 100644 --- a/website/public/en/ChapterFour/0001~0099/0074.Search-a-2D-Matrix/index.html +++ b/website/public/en/ChapterFour/0001~0099/0074.Search-a-2D-Matrix/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0075.Sort-Colors/index.html b/website/public/en/ChapterFour/0001~0099/0075.Sort-Colors/index.html index 47f87a131..e56e4417e 100644 --- a/website/public/en/ChapterFour/0001~0099/0075.Sort-Colors/index.html +++ b/website/public/en/ChapterFour/0001~0099/0075.Sort-Colors/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0076.Minimum-Window-Substring/index.html b/website/public/en/ChapterFour/0001~0099/0076.Minimum-Window-Substring/index.html index 4ed6cf5ce..7df948bfb 100644 --- a/website/public/en/ChapterFour/0001~0099/0076.Minimum-Window-Substring/index.html +++ b/website/public/en/ChapterFour/0001~0099/0076.Minimum-Window-Substring/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0077.Combinations/index.html b/website/public/en/ChapterFour/0001~0099/0077.Combinations/index.html index b5f09e111..a76cbab0a 100644 --- a/website/public/en/ChapterFour/0001~0099/0077.Combinations/index.html +++ b/website/public/en/ChapterFour/0001~0099/0077.Combinations/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0078.Subsets/index.html b/website/public/en/ChapterFour/0001~0099/0078.Subsets/index.html index aaa4ce98e..632f1933d 100644 --- a/website/public/en/ChapterFour/0001~0099/0078.Subsets/index.html +++ b/website/public/en/ChapterFour/0001~0099/0078.Subsets/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0079.Word-Search/index.html b/website/public/en/ChapterFour/0001~0099/0079.Word-Search/index.html index fb3a8d677..293bc5048 100644 --- a/website/public/en/ChapterFour/0001~0099/0079.Word-Search/index.html +++ b/website/public/en/ChapterFour/0001~0099/0079.Word-Search/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0080.Remove-Duplicates-from-Sorted-Array-II/index.html b/website/public/en/ChapterFour/0001~0099/0080.Remove-Duplicates-from-Sorted-Array-II/index.html index 2eb5fca1e..319b576ed 100644 --- a/website/public/en/ChapterFour/0001~0099/0080.Remove-Duplicates-from-Sorted-Array-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0080.Remove-Duplicates-from-Sorted-Array-II/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0081.Search-in-Rotated-Sorted-Array-II/index.html b/website/public/en/ChapterFour/0001~0099/0081.Search-in-Rotated-Sorted-Array-II/index.html index 6dfa76d95..c33b0d0c5 100644 --- a/website/public/en/ChapterFour/0001~0099/0081.Search-in-Rotated-Sorted-Array-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0081.Search-in-Rotated-Sorted-Array-II/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0082.Remove-Duplicates-from-Sorted-List-II/index.html b/website/public/en/ChapterFour/0001~0099/0082.Remove-Duplicates-from-Sorted-List-II/index.html index adc5a0c32..7bcc284f4 100644 --- a/website/public/en/ChapterFour/0001~0099/0082.Remove-Duplicates-from-Sorted-List-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0082.Remove-Duplicates-from-Sorted-List-II/index.html @@ -12488,7 +12488,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0083.Remove-Duplicates-from-Sorted-List/index.html b/website/public/en/ChapterFour/0001~0099/0083.Remove-Duplicates-from-Sorted-List/index.html index 1ccc99403..7688ec4f7 100644 --- a/website/public/en/ChapterFour/0001~0099/0083.Remove-Duplicates-from-Sorted-List/index.html +++ b/website/public/en/ChapterFour/0001~0099/0083.Remove-Duplicates-from-Sorted-List/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0084.Largest-Rectangle-in-Histogram/index.html b/website/public/en/ChapterFour/0001~0099/0084.Largest-Rectangle-in-Histogram/index.html index 3821eb933..6f009576a 100644 --- a/website/public/en/ChapterFour/0001~0099/0084.Largest-Rectangle-in-Histogram/index.html +++ b/website/public/en/ChapterFour/0001~0099/0084.Largest-Rectangle-in-Histogram/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0085.Maximal-Rectangle/index.html b/website/public/en/ChapterFour/0001~0099/0085.Maximal-Rectangle/index.html index c8500ec97..4d073fd78 100644 --- a/website/public/en/ChapterFour/0001~0099/0085.Maximal-Rectangle/index.html +++ b/website/public/en/ChapterFour/0001~0099/0085.Maximal-Rectangle/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0086.Partition-List/index.html b/website/public/en/ChapterFour/0001~0099/0086.Partition-List/index.html index df7a60b5f..6330f9cec 100644 --- a/website/public/en/ChapterFour/0001~0099/0086.Partition-List/index.html +++ b/website/public/en/ChapterFour/0001~0099/0086.Partition-List/index.html @@ -12440,7 +12440,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0088.Merge-Sorted-Array/index.html b/website/public/en/ChapterFour/0001~0099/0088.Merge-Sorted-Array/index.html index 15e67044c..e5fee77df 100644 --- a/website/public/en/ChapterFour/0001~0099/0088.Merge-Sorted-Array/index.html +++ b/website/public/en/ChapterFour/0001~0099/0088.Merge-Sorted-Array/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0089.Gray-Code/index.html b/website/public/en/ChapterFour/0001~0099/0089.Gray-Code/index.html index 2e6138d01..cd780d511 100644 --- a/website/public/en/ChapterFour/0001~0099/0089.Gray-Code/index.html +++ b/website/public/en/ChapterFour/0001~0099/0089.Gray-Code/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0090.Subsets-II/index.html b/website/public/en/ChapterFour/0001~0099/0090.Subsets-II/index.html index f9e033085..cc4f34b4d 100644 --- a/website/public/en/ChapterFour/0001~0099/0090.Subsets-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0090.Subsets-II/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0091.Decode-Ways/index.html b/website/public/en/ChapterFour/0001~0099/0091.Decode-Ways/index.html index ee204727a..803c5421f 100644 --- a/website/public/en/ChapterFour/0001~0099/0091.Decode-Ways/index.html +++ b/website/public/en/ChapterFour/0001~0099/0091.Decode-Ways/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0092.Reverse-Linked-List-II/index.html b/website/public/en/ChapterFour/0001~0099/0092.Reverse-Linked-List-II/index.html index d923e9878..4d40721cf 100644 --- a/website/public/en/ChapterFour/0001~0099/0092.Reverse-Linked-List-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0092.Reverse-Linked-List-II/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0093.Restore-IP-Addresses/index.html b/website/public/en/ChapterFour/0001~0099/0093.Restore-IP-Addresses/index.html index 50c491a2c..2ab079614 100644 --- a/website/public/en/ChapterFour/0001~0099/0093.Restore-IP-Addresses/index.html +++ b/website/public/en/ChapterFour/0001~0099/0093.Restore-IP-Addresses/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0094.Binary-Tree-Inorder-Traversal/index.html b/website/public/en/ChapterFour/0001~0099/0094.Binary-Tree-Inorder-Traversal/index.html index 462b0930e..9a1e4217b 100644 --- a/website/public/en/ChapterFour/0001~0099/0094.Binary-Tree-Inorder-Traversal/index.html +++ b/website/public/en/ChapterFour/0001~0099/0094.Binary-Tree-Inorder-Traversal/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0095.Unique-Binary-Search-Trees-II/index.html b/website/public/en/ChapterFour/0001~0099/0095.Unique-Binary-Search-Trees-II/index.html index 7447ef381..2db5e50d6 100644 --- a/website/public/en/ChapterFour/0001~0099/0095.Unique-Binary-Search-Trees-II/index.html +++ b/website/public/en/ChapterFour/0001~0099/0095.Unique-Binary-Search-Trees-II/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0096.Unique-Binary-Search-Trees/index.html b/website/public/en/ChapterFour/0001~0099/0096.Unique-Binary-Search-Trees/index.html index 763ce84b3..f5073a3e4 100644 --- a/website/public/en/ChapterFour/0001~0099/0096.Unique-Binary-Search-Trees/index.html +++ b/website/public/en/ChapterFour/0001~0099/0096.Unique-Binary-Search-Trees/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0097.Interleaving-String/index.html b/website/public/en/ChapterFour/0001~0099/0097.Interleaving-String/index.html index cc5aa6433..8e24657e8 100644 --- a/website/public/en/ChapterFour/0001~0099/0097.Interleaving-String/index.html +++ b/website/public/en/ChapterFour/0001~0099/0097.Interleaving-String/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0098.Validate-Binary-Search-Tree/index.html b/website/public/en/ChapterFour/0001~0099/0098.Validate-Binary-Search-Tree/index.html index e2da10231..2ca21b4d3 100644 --- a/website/public/en/ChapterFour/0001~0099/0098.Validate-Binary-Search-Tree/index.html +++ b/website/public/en/ChapterFour/0001~0099/0098.Validate-Binary-Search-Tree/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/0099.Recover-Binary-Search-Tree/index.html b/website/public/en/ChapterFour/0001~0099/0099.Recover-Binary-Search-Tree/index.html index af5fcf5d4..ef9262c33 100644 --- a/website/public/en/ChapterFour/0001~0099/0099.Recover-Binary-Search-Tree/index.html +++ b/website/public/en/ChapterFour/0001~0099/0099.Recover-Binary-Search-Tree/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0001~0099/index.html b/website/public/en/ChapterFour/0001~0099/index.html index 7459b171b..6110dc271 100644 --- a/website/public/en/ChapterFour/0001~0099/index.html +++ b/website/public/en/ChapterFour/0001~0099/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0100.Same-Tree/index.html b/website/public/en/ChapterFour/0100~0199/0100.Same-Tree/index.html index 65a9dcac4..a74522009 100644 --- a/website/public/en/ChapterFour/0100~0199/0100.Same-Tree/index.html +++ b/website/public/en/ChapterFour/0100~0199/0100.Same-Tree/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0101.Symmetric-Tree/index.html b/website/public/en/ChapterFour/0100~0199/0101.Symmetric-Tree/index.html index a72325d37..71e83614a 100644 --- a/website/public/en/ChapterFour/0100~0199/0101.Symmetric-Tree/index.html +++ b/website/public/en/ChapterFour/0100~0199/0101.Symmetric-Tree/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0102.Binary-Tree-Level-Order-Traversal/index.html b/website/public/en/ChapterFour/0100~0199/0102.Binary-Tree-Level-Order-Traversal/index.html index cfa088127..cd3ab26b7 100644 --- a/website/public/en/ChapterFour/0100~0199/0102.Binary-Tree-Level-Order-Traversal/index.html +++ b/website/public/en/ChapterFour/0100~0199/0102.Binary-Tree-Level-Order-Traversal/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0103.Binary-Tree-Zigzag-Level-Order-Traversal/index.html b/website/public/en/ChapterFour/0100~0199/0103.Binary-Tree-Zigzag-Level-Order-Traversal/index.html index f2b7e551b..4b7ede889 100644 --- a/website/public/en/ChapterFour/0100~0199/0103.Binary-Tree-Zigzag-Level-Order-Traversal/index.html +++ b/website/public/en/ChapterFour/0100~0199/0103.Binary-Tree-Zigzag-Level-Order-Traversal/index.html @@ -12464,7 +12464,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0104.Maximum-Depth-of-Binary-Tree/index.html b/website/public/en/ChapterFour/0100~0199/0104.Maximum-Depth-of-Binary-Tree/index.html index 6d1f4d318..39c0bc596 100644 --- a/website/public/en/ChapterFour/0100~0199/0104.Maximum-Depth-of-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0100~0199/0104.Maximum-Depth-of-Binary-Tree/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/index.html b/website/public/en/ChapterFour/0100~0199/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/index.html index 94a4e9f10..0c5a28040 100644 --- a/website/public/en/ChapterFour/0100~0199/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/index.html +++ b/website/public/en/ChapterFour/0100~0199/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/index.html b/website/public/en/ChapterFour/0100~0199/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/index.html index 2e4ba0ac8..fbaa67d0c 100644 --- a/website/public/en/ChapterFour/0100~0199/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/index.html +++ b/website/public/en/ChapterFour/0100~0199/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0107.Binary-Tree-Level-Order-Traversal-II/index.html b/website/public/en/ChapterFour/0100~0199/0107.Binary-Tree-Level-Order-Traversal-II/index.html index 15c53116c..7f5b5f90b 100644 --- a/website/public/en/ChapterFour/0100~0199/0107.Binary-Tree-Level-Order-Traversal-II/index.html +++ b/website/public/en/ChapterFour/0100~0199/0107.Binary-Tree-Level-Order-Traversal-II/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0108.Convert-Sorted-Array-to-Binary-Search-Tree/index.html b/website/public/en/ChapterFour/0100~0199/0108.Convert-Sorted-Array-to-Binary-Search-Tree/index.html index 5798f287c..b2cbb3726 100644 --- a/website/public/en/ChapterFour/0100~0199/0108.Convert-Sorted-Array-to-Binary-Search-Tree/index.html +++ b/website/public/en/ChapterFour/0100~0199/0108.Convert-Sorted-Array-to-Binary-Search-Tree/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0109.Convert-Sorted-List-to-Binary-Search-Tree/index.html b/website/public/en/ChapterFour/0100~0199/0109.Convert-Sorted-List-to-Binary-Search-Tree/index.html index 25f13f3a8..9a86bc78a 100644 --- a/website/public/en/ChapterFour/0100~0199/0109.Convert-Sorted-List-to-Binary-Search-Tree/index.html +++ b/website/public/en/ChapterFour/0100~0199/0109.Convert-Sorted-List-to-Binary-Search-Tree/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0110.Balanced-Binary-Tree/index.html b/website/public/en/ChapterFour/0100~0199/0110.Balanced-Binary-Tree/index.html index 649f2623c..72b6cb781 100644 --- a/website/public/en/ChapterFour/0100~0199/0110.Balanced-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0100~0199/0110.Balanced-Binary-Tree/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0111.Minimum-Depth-of-Binary-Tree/index.html b/website/public/en/ChapterFour/0100~0199/0111.Minimum-Depth-of-Binary-Tree/index.html index c658a77c3..5c52b2fcc 100644 --- a/website/public/en/ChapterFour/0100~0199/0111.Minimum-Depth-of-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0100~0199/0111.Minimum-Depth-of-Binary-Tree/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0112.Path-Sum/index.html b/website/public/en/ChapterFour/0100~0199/0112.Path-Sum/index.html index e5c95269d..9c122b1f2 100644 --- a/website/public/en/ChapterFour/0100~0199/0112.Path-Sum/index.html +++ b/website/public/en/ChapterFour/0100~0199/0112.Path-Sum/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0113.Path-Sum-II/index.html b/website/public/en/ChapterFour/0100~0199/0113.Path-Sum-II/index.html index c8c687c06..01e06663f 100644 --- a/website/public/en/ChapterFour/0100~0199/0113.Path-Sum-II/index.html +++ b/website/public/en/ChapterFour/0100~0199/0113.Path-Sum-II/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0114.Flatten-Binary-Tree-to-Linked-List/index.html b/website/public/en/ChapterFour/0100~0199/0114.Flatten-Binary-Tree-to-Linked-List/index.html index 7e51c4072..d21ceaf3d 100644 --- a/website/public/en/ChapterFour/0100~0199/0114.Flatten-Binary-Tree-to-Linked-List/index.html +++ b/website/public/en/ChapterFour/0100~0199/0114.Flatten-Binary-Tree-to-Linked-List/index.html @@ -12500,7 +12500,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0115.Distinct-Subsequences/index.html b/website/public/en/ChapterFour/0100~0199/0115.Distinct-Subsequences/index.html index 0ac6f7c2f..fff79572d 100644 --- a/website/public/en/ChapterFour/0100~0199/0115.Distinct-Subsequences/index.html +++ b/website/public/en/ChapterFour/0100~0199/0115.Distinct-Subsequences/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0116.Populating-Next-Right-Pointers-in-Each-Node/index.html b/website/public/en/ChapterFour/0100~0199/0116.Populating-Next-Right-Pointers-in-Each-Node/index.html index e640c41a1..c5566eef4 100644 --- a/website/public/en/ChapterFour/0100~0199/0116.Populating-Next-Right-Pointers-in-Each-Node/index.html +++ b/website/public/en/ChapterFour/0100~0199/0116.Populating-Next-Right-Pointers-in-Each-Node/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0118.Pascals-Triangle/index.html b/website/public/en/ChapterFour/0100~0199/0118.Pascals-Triangle/index.html index f1752e4b4..aa6c7e066 100644 --- a/website/public/en/ChapterFour/0100~0199/0118.Pascals-Triangle/index.html +++ b/website/public/en/ChapterFour/0100~0199/0118.Pascals-Triangle/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0119.Pascals-Triangle-II/index.html b/website/public/en/ChapterFour/0100~0199/0119.Pascals-Triangle-II/index.html index 638f13d42..695bee9b2 100644 --- a/website/public/en/ChapterFour/0100~0199/0119.Pascals-Triangle-II/index.html +++ b/website/public/en/ChapterFour/0100~0199/0119.Pascals-Triangle-II/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0120.Triangle/index.html b/website/public/en/ChapterFour/0100~0199/0120.Triangle/index.html index 4be1d8f9a..13790b644 100644 --- a/website/public/en/ChapterFour/0100~0199/0120.Triangle/index.html +++ b/website/public/en/ChapterFour/0100~0199/0120.Triangle/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0121.Best-Time-to-Buy-and-Sell-Stock/index.html b/website/public/en/ChapterFour/0100~0199/0121.Best-Time-to-Buy-and-Sell-Stock/index.html index 94c37e118..f4012aafa 100644 --- a/website/public/en/ChapterFour/0100~0199/0121.Best-Time-to-Buy-and-Sell-Stock/index.html +++ b/website/public/en/ChapterFour/0100~0199/0121.Best-Time-to-Buy-and-Sell-Stock/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0122.Best-Time-to-Buy-and-Sell-Stock-II/index.html b/website/public/en/ChapterFour/0100~0199/0122.Best-Time-to-Buy-and-Sell-Stock-II/index.html index 7e51a6b04..60aa5d420 100644 --- a/website/public/en/ChapterFour/0100~0199/0122.Best-Time-to-Buy-and-Sell-Stock-II/index.html +++ b/website/public/en/ChapterFour/0100~0199/0122.Best-Time-to-Buy-and-Sell-Stock-II/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0124.Binary-Tree-Maximum-Path-Sum/index.html b/website/public/en/ChapterFour/0100~0199/0124.Binary-Tree-Maximum-Path-Sum/index.html index 12defd9f0..17b29c8d0 100644 --- a/website/public/en/ChapterFour/0100~0199/0124.Binary-Tree-Maximum-Path-Sum/index.html +++ b/website/public/en/ChapterFour/0100~0199/0124.Binary-Tree-Maximum-Path-Sum/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0125.Valid-Palindrome/index.html b/website/public/en/ChapterFour/0100~0199/0125.Valid-Palindrome/index.html index 73154e986..f9e039319 100644 --- a/website/public/en/ChapterFour/0100~0199/0125.Valid-Palindrome/index.html +++ b/website/public/en/ChapterFour/0100~0199/0125.Valid-Palindrome/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0126.Word-Ladder-II/index.html b/website/public/en/ChapterFour/0100~0199/0126.Word-Ladder-II/index.html index 43d9f342b..881e2eaf5 100644 --- a/website/public/en/ChapterFour/0100~0199/0126.Word-Ladder-II/index.html +++ b/website/public/en/ChapterFour/0100~0199/0126.Word-Ladder-II/index.html @@ -12429,7 +12429,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0127.Word-Ladder/index.html b/website/public/en/ChapterFour/0100~0199/0127.Word-Ladder/index.html index 8d162aed6..ebdcbeef4 100644 --- a/website/public/en/ChapterFour/0100~0199/0127.Word-Ladder/index.html +++ b/website/public/en/ChapterFour/0100~0199/0127.Word-Ladder/index.html @@ -12423,7 +12423,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0128.Longest-Consecutive-Sequence/index.html b/website/public/en/ChapterFour/0100~0199/0128.Longest-Consecutive-Sequence/index.html index 0ad612880..91f003a9e 100644 --- a/website/public/en/ChapterFour/0100~0199/0128.Longest-Consecutive-Sequence/index.html +++ b/website/public/en/ChapterFour/0100~0199/0128.Longest-Consecutive-Sequence/index.html @@ -12435,7 +12435,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0129.Sum-Root-to-Leaf-Numbers/index.html b/website/public/en/ChapterFour/0100~0199/0129.Sum-Root-to-Leaf-Numbers/index.html index 511bd9b62..e1ed7794f 100644 --- a/website/public/en/ChapterFour/0100~0199/0129.Sum-Root-to-Leaf-Numbers/index.html +++ b/website/public/en/ChapterFour/0100~0199/0129.Sum-Root-to-Leaf-Numbers/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0130.Surrounded-Regions/index.html b/website/public/en/ChapterFour/0100~0199/0130.Surrounded-Regions/index.html index 7188c5b2f..3bdd56f87 100644 --- a/website/public/en/ChapterFour/0100~0199/0130.Surrounded-Regions/index.html +++ b/website/public/en/ChapterFour/0100~0199/0130.Surrounded-Regions/index.html @@ -12422,7 +12422,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0131.Palindrome-Partitioning/index.html b/website/public/en/ChapterFour/0100~0199/0131.Palindrome-Partitioning/index.html index a6de6de56..4d96c81f1 100644 --- a/website/public/en/ChapterFour/0100~0199/0131.Palindrome-Partitioning/index.html +++ b/website/public/en/ChapterFour/0100~0199/0131.Palindrome-Partitioning/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0132.Palindrome-Partitioning-II/index.html b/website/public/en/ChapterFour/0100~0199/0132.Palindrome-Partitioning-II/index.html index 4635d03e8..83faaf928 100644 --- a/website/public/en/ChapterFour/0100~0199/0132.Palindrome-Partitioning-II/index.html +++ b/website/public/en/ChapterFour/0100~0199/0132.Palindrome-Partitioning-II/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0134.Gas-Station/index.html b/website/public/en/ChapterFour/0100~0199/0134.Gas-Station/index.html index cdf1c52ac..6fc92d9f9 100644 --- a/website/public/en/ChapterFour/0100~0199/0134.Gas-Station/index.html +++ b/website/public/en/ChapterFour/0100~0199/0134.Gas-Station/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0135.Candy/index.html b/website/public/en/ChapterFour/0100~0199/0135.Candy/index.html index 904d1e184..9f81dabd5 100644 --- a/website/public/en/ChapterFour/0100~0199/0135.Candy/index.html +++ b/website/public/en/ChapterFour/0100~0199/0135.Candy/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0136.Single-Number/index.html b/website/public/en/ChapterFour/0100~0199/0136.Single-Number/index.html index f0b30a619..9676d7dfb 100644 --- a/website/public/en/ChapterFour/0100~0199/0136.Single-Number/index.html +++ b/website/public/en/ChapterFour/0100~0199/0136.Single-Number/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0137.Single-Number-II/index.html b/website/public/en/ChapterFour/0100~0199/0137.Single-Number-II/index.html index 9fc9bd0d1..2b1af4990 100644 --- a/website/public/en/ChapterFour/0100~0199/0137.Single-Number-II/index.html +++ b/website/public/en/ChapterFour/0100~0199/0137.Single-Number-II/index.html @@ -12508,7 +12508,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0138.Copy-List-With-Random-Pointer/index.html b/website/public/en/ChapterFour/0100~0199/0138.Copy-List-With-Random-Pointer/index.html index 07ced3efb..940b8a91d 100644 --- a/website/public/en/ChapterFour/0100~0199/0138.Copy-List-With-Random-Pointer/index.html +++ b/website/public/en/ChapterFour/0100~0199/0138.Copy-List-With-Random-Pointer/index.html @@ -12421,7 +12421,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0141.Linked-List-Cycle/index.html b/website/public/en/ChapterFour/0100~0199/0141.Linked-List-Cycle/index.html index 43cf6d5af..905108f94 100644 --- a/website/public/en/ChapterFour/0100~0199/0141.Linked-List-Cycle/index.html +++ b/website/public/en/ChapterFour/0100~0199/0141.Linked-List-Cycle/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0142.Linked-List-Cycle-II/index.html b/website/public/en/ChapterFour/0100~0199/0142.Linked-List-Cycle-II/index.html index c8481eb49..8b3b5a2a7 100644 --- a/website/public/en/ChapterFour/0100~0199/0142.Linked-List-Cycle-II/index.html +++ b/website/public/en/ChapterFour/0100~0199/0142.Linked-List-Cycle-II/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0143.Reorder-List/index.html b/website/public/en/ChapterFour/0100~0199/0143.Reorder-List/index.html index ac815dea8..d079788a7 100644 --- a/website/public/en/ChapterFour/0100~0199/0143.Reorder-List/index.html +++ b/website/public/en/ChapterFour/0100~0199/0143.Reorder-List/index.html @@ -12420,7 +12420,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0144.Binary-Tree-Preorder-Traversal/index.html b/website/public/en/ChapterFour/0100~0199/0144.Binary-Tree-Preorder-Traversal/index.html index 3730a158c..d93e8dd47 100644 --- a/website/public/en/ChapterFour/0100~0199/0144.Binary-Tree-Preorder-Traversal/index.html +++ b/website/public/en/ChapterFour/0100~0199/0144.Binary-Tree-Preorder-Traversal/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0145.Binary-Tree-Postorder-Traversal/index.html b/website/public/en/ChapterFour/0100~0199/0145.Binary-Tree-Postorder-Traversal/index.html index 2d0b95f96..b7dc0477a 100644 --- a/website/public/en/ChapterFour/0100~0199/0145.Binary-Tree-Postorder-Traversal/index.html +++ b/website/public/en/ChapterFour/0100~0199/0145.Binary-Tree-Postorder-Traversal/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0146.LRU-Cache/index.html b/website/public/en/ChapterFour/0100~0199/0146.LRU-Cache/index.html index 882e548d7..c89764986 100644 --- a/website/public/en/ChapterFour/0100~0199/0146.LRU-Cache/index.html +++ b/website/public/en/ChapterFour/0100~0199/0146.LRU-Cache/index.html @@ -12433,7 +12433,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0147.Insertion-Sort-List/index.html b/website/public/en/ChapterFour/0100~0199/0147.Insertion-Sort-List/index.html index 21688f802..e160f6714 100644 --- a/website/public/en/ChapterFour/0100~0199/0147.Insertion-Sort-List/index.html +++ b/website/public/en/ChapterFour/0100~0199/0147.Insertion-Sort-List/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0148.Sort-List/index.html b/website/public/en/ChapterFour/0100~0199/0148.Sort-List/index.html index 5ee9db35d..2a6656687 100644 --- a/website/public/en/ChapterFour/0100~0199/0148.Sort-List/index.html +++ b/website/public/en/ChapterFour/0100~0199/0148.Sort-List/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0150.Evaluate-Reverse-Polish-Notation/index.html b/website/public/en/ChapterFour/0100~0199/0150.Evaluate-Reverse-Polish-Notation/index.html index afb7a6525..d7ee99c10 100644 --- a/website/public/en/ChapterFour/0100~0199/0150.Evaluate-Reverse-Polish-Notation/index.html +++ b/website/public/en/ChapterFour/0100~0199/0150.Evaluate-Reverse-Polish-Notation/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0151.Reverse-Words-in-a-String/index.html b/website/public/en/ChapterFour/0100~0199/0151.Reverse-Words-in-a-String/index.html index b73d6888b..53f363299 100644 --- a/website/public/en/ChapterFour/0100~0199/0151.Reverse-Words-in-a-String/index.html +++ b/website/public/en/ChapterFour/0100~0199/0151.Reverse-Words-in-a-String/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0152.Maximum-Product-Subarray/index.html b/website/public/en/ChapterFour/0100~0199/0152.Maximum-Product-Subarray/index.html index 823dfca54..ced782024 100644 --- a/website/public/en/ChapterFour/0100~0199/0152.Maximum-Product-Subarray/index.html +++ b/website/public/en/ChapterFour/0100~0199/0152.Maximum-Product-Subarray/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0153.Find-Minimum-in-Rotated-Sorted-Array/index.html b/website/public/en/ChapterFour/0100~0199/0153.Find-Minimum-in-Rotated-Sorted-Array/index.html index a37221bd2..2ac93ae94 100644 --- a/website/public/en/ChapterFour/0100~0199/0153.Find-Minimum-in-Rotated-Sorted-Array/index.html +++ b/website/public/en/ChapterFour/0100~0199/0153.Find-Minimum-in-Rotated-Sorted-Array/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0154.Find-Minimum-in-Rotated-Sorted-Array-II/index.html b/website/public/en/ChapterFour/0100~0199/0154.Find-Minimum-in-Rotated-Sorted-Array-II/index.html index 4011b8eda..05c134821 100644 --- a/website/public/en/ChapterFour/0100~0199/0154.Find-Minimum-in-Rotated-Sorted-Array-II/index.html +++ b/website/public/en/ChapterFour/0100~0199/0154.Find-Minimum-in-Rotated-Sorted-Array-II/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0155.Min-Stack/index.html b/website/public/en/ChapterFour/0100~0199/0155.Min-Stack/index.html index 1653c41b7..d79c02466 100644 --- a/website/public/en/ChapterFour/0100~0199/0155.Min-Stack/index.html +++ b/website/public/en/ChapterFour/0100~0199/0155.Min-Stack/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0160.Intersection-of-Two-Linked-Lists/index.html b/website/public/en/ChapterFour/0100~0199/0160.Intersection-of-Two-Linked-Lists/index.html index d607f5f12..b9d319182 100644 --- a/website/public/en/ChapterFour/0100~0199/0160.Intersection-of-Two-Linked-Lists/index.html +++ b/website/public/en/ChapterFour/0100~0199/0160.Intersection-of-Two-Linked-Lists/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0162.Find-Peak-Element/index.html b/website/public/en/ChapterFour/0100~0199/0162.Find-Peak-Element/index.html index 809078357..7b520feb1 100644 --- a/website/public/en/ChapterFour/0100~0199/0162.Find-Peak-Element/index.html +++ b/website/public/en/ChapterFour/0100~0199/0162.Find-Peak-Element/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0164.Maximum-Gap/index.html b/website/public/en/ChapterFour/0100~0199/0164.Maximum-Gap/index.html index c28977364..7fceacc43 100644 --- a/website/public/en/ChapterFour/0100~0199/0164.Maximum-Gap/index.html +++ b/website/public/en/ChapterFour/0100~0199/0164.Maximum-Gap/index.html @@ -12429,7 +12429,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0167.Two-Sum-II-Input-array-is-sorted/index.html b/website/public/en/ChapterFour/0100~0199/0167.Two-Sum-II-Input-array-is-sorted/index.html index ec6ec2f98..a2818d10a 100644 --- a/website/public/en/ChapterFour/0100~0199/0167.Two-Sum-II-Input-array-is-sorted/index.html +++ b/website/public/en/ChapterFour/0100~0199/0167.Two-Sum-II-Input-array-is-sorted/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0168.Excel-Sheet-Column-Title/index.html b/website/public/en/ChapterFour/0100~0199/0168.Excel-Sheet-Column-Title/index.html index 44b2de672..0ec1178ae 100644 --- a/website/public/en/ChapterFour/0100~0199/0168.Excel-Sheet-Column-Title/index.html +++ b/website/public/en/ChapterFour/0100~0199/0168.Excel-Sheet-Column-Title/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0169.Majority-Element/index.html b/website/public/en/ChapterFour/0100~0199/0169.Majority-Element/index.html index 996a45cff..ab748f688 100644 --- a/website/public/en/ChapterFour/0100~0199/0169.Majority-Element/index.html +++ b/website/public/en/ChapterFour/0100~0199/0169.Majority-Element/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0171.Excel-Sheet-Column-Number/index.html b/website/public/en/ChapterFour/0100~0199/0171.Excel-Sheet-Column-Number/index.html index c728c00c4..092cfbb36 100644 --- a/website/public/en/ChapterFour/0100~0199/0171.Excel-Sheet-Column-Number/index.html +++ b/website/public/en/ChapterFour/0100~0199/0171.Excel-Sheet-Column-Number/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0172.Factorial-Trailing-Zeroes/index.html b/website/public/en/ChapterFour/0100~0199/0172.Factorial-Trailing-Zeroes/index.html index a712ac9f1..bae8e9162 100644 --- a/website/public/en/ChapterFour/0100~0199/0172.Factorial-Trailing-Zeroes/index.html +++ b/website/public/en/ChapterFour/0100~0199/0172.Factorial-Trailing-Zeroes/index.html @@ -12348,7 +12348,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0173.Binary-Search-Tree-Iterator/index.html b/website/public/en/ChapterFour/0100~0199/0173.Binary-Search-Tree-Iterator/index.html index 96fdbe7d6..799e9fe95 100644 --- a/website/public/en/ChapterFour/0100~0199/0173.Binary-Search-Tree-Iterator/index.html +++ b/website/public/en/ChapterFour/0100~0199/0173.Binary-Search-Tree-Iterator/index.html @@ -12432,7 +12432,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0174.Dungeon-Game/index.html b/website/public/en/ChapterFour/0100~0199/0174.Dungeon-Game/index.html index a06502e3f..4e6e3de7e 100644 --- a/website/public/en/ChapterFour/0100~0199/0174.Dungeon-Game/index.html +++ b/website/public/en/ChapterFour/0100~0199/0174.Dungeon-Game/index.html @@ -12437,7 +12437,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0179.Largest-Number/index.html b/website/public/en/ChapterFour/0100~0199/0179.Largest-Number/index.html index 43f488b29..72d709ccd 100644 --- a/website/public/en/ChapterFour/0100~0199/0179.Largest-Number/index.html +++ b/website/public/en/ChapterFour/0100~0199/0179.Largest-Number/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0187.Repeated-DNA-Sequences/index.html b/website/public/en/ChapterFour/0100~0199/0187.Repeated-DNA-Sequences/index.html index 9946d8779..5c644992a 100644 --- a/website/public/en/ChapterFour/0100~0199/0187.Repeated-DNA-Sequences/index.html +++ b/website/public/en/ChapterFour/0100~0199/0187.Repeated-DNA-Sequences/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0189.Rotate-Array/index.html b/website/public/en/ChapterFour/0100~0199/0189.Rotate-Array/index.html index ec8fffb39..a7ab30d91 100644 --- a/website/public/en/ChapterFour/0100~0199/0189.Rotate-Array/index.html +++ b/website/public/en/ChapterFour/0100~0199/0189.Rotate-Array/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0190.Reverse-Bits/index.html b/website/public/en/ChapterFour/0100~0199/0190.Reverse-Bits/index.html index 896680aa6..54d81cd33 100644 --- a/website/public/en/ChapterFour/0100~0199/0190.Reverse-Bits/index.html +++ b/website/public/en/ChapterFour/0100~0199/0190.Reverse-Bits/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0191.Number-of-1-Bits/index.html b/website/public/en/ChapterFour/0100~0199/0191.Number-of-1-Bits/index.html index ea55ca539..51a93b4b9 100644 --- a/website/public/en/ChapterFour/0100~0199/0191.Number-of-1-Bits/index.html +++ b/website/public/en/ChapterFour/0100~0199/0191.Number-of-1-Bits/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0198.House-Robber/index.html b/website/public/en/ChapterFour/0100~0199/0198.House-Robber/index.html index 984561bf2..128a0e685 100644 --- a/website/public/en/ChapterFour/0100~0199/0198.House-Robber/index.html +++ b/website/public/en/ChapterFour/0100~0199/0198.House-Robber/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/0199.Binary-Tree-Right-Side-View/index.html b/website/public/en/ChapterFour/0100~0199/0199.Binary-Tree-Right-Side-View/index.html index e906815a7..c20390435 100644 --- a/website/public/en/ChapterFour/0100~0199/0199.Binary-Tree-Right-Side-View/index.html +++ b/website/public/en/ChapterFour/0100~0199/0199.Binary-Tree-Right-Side-View/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0100~0199/index.html b/website/public/en/ChapterFour/0100~0199/index.html index bcc26edf9..e6adb3a1e 100644 --- a/website/public/en/ChapterFour/0100~0199/index.html +++ b/website/public/en/ChapterFour/0100~0199/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0200.Number-of-Islands/index.html b/website/public/en/ChapterFour/0200~0299/0200.Number-of-Islands/index.html index 0040b76de..cbe3829cb 100644 --- a/website/public/en/ChapterFour/0200~0299/0200.Number-of-Islands/index.html +++ b/website/public/en/ChapterFour/0200~0299/0200.Number-of-Islands/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0201.Bitwise-AND-of-Numbers-Range/index.html b/website/public/en/ChapterFour/0200~0299/0201.Bitwise-AND-of-Numbers-Range/index.html index 6170a647b..cead4fed4 100644 --- a/website/public/en/ChapterFour/0200~0299/0201.Bitwise-AND-of-Numbers-Range/index.html +++ b/website/public/en/ChapterFour/0200~0299/0201.Bitwise-AND-of-Numbers-Range/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0202.Happy-Number/index.html b/website/public/en/ChapterFour/0200~0299/0202.Happy-Number/index.html index 5ecfe51c1..1429ae2cb 100644 --- a/website/public/en/ChapterFour/0200~0299/0202.Happy-Number/index.html +++ b/website/public/en/ChapterFour/0200~0299/0202.Happy-Number/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0203.Remove-Linked-List-Elements/index.html b/website/public/en/ChapterFour/0200~0299/0203.Remove-Linked-List-Elements/index.html index d3fd96c2f..5761495fd 100644 --- a/website/public/en/ChapterFour/0200~0299/0203.Remove-Linked-List-Elements/index.html +++ b/website/public/en/ChapterFour/0200~0299/0203.Remove-Linked-List-Elements/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0204.Count-Primes/index.html b/website/public/en/ChapterFour/0200~0299/0204.Count-Primes/index.html index 09d5cc2fa..5203d00d1 100644 --- a/website/public/en/ChapterFour/0200~0299/0204.Count-Primes/index.html +++ b/website/public/en/ChapterFour/0200~0299/0204.Count-Primes/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0205.Isomorphic-Strings/index.html b/website/public/en/ChapterFour/0200~0299/0205.Isomorphic-Strings/index.html index 0331752f1..1d8589597 100644 --- a/website/public/en/ChapterFour/0200~0299/0205.Isomorphic-Strings/index.html +++ b/website/public/en/ChapterFour/0200~0299/0205.Isomorphic-Strings/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0206.Reverse-Linked-List/index.html b/website/public/en/ChapterFour/0200~0299/0206.Reverse-Linked-List/index.html index 75d5e8708..e49a1340d 100644 --- a/website/public/en/ChapterFour/0200~0299/0206.Reverse-Linked-List/index.html +++ b/website/public/en/ChapterFour/0200~0299/0206.Reverse-Linked-List/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0207.Course-Schedule/index.html b/website/public/en/ChapterFour/0200~0299/0207.Course-Schedule/index.html index 31facaf10..2bcfb6754 100644 --- a/website/public/en/ChapterFour/0200~0299/0207.Course-Schedule/index.html +++ b/website/public/en/ChapterFour/0200~0299/0207.Course-Schedule/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0208.Implement-Trie-Prefix-Tree/index.html b/website/public/en/ChapterFour/0200~0299/0208.Implement-Trie-Prefix-Tree/index.html index 01d2cb1f6..392366965 100644 --- a/website/public/en/ChapterFour/0200~0299/0208.Implement-Trie-Prefix-Tree/index.html +++ b/website/public/en/ChapterFour/0200~0299/0208.Implement-Trie-Prefix-Tree/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0209.Minimum-Size-Subarray-Sum/index.html b/website/public/en/ChapterFour/0200~0299/0209.Minimum-Size-Subarray-Sum/index.html index 401336786..045a550b8 100644 --- a/website/public/en/ChapterFour/0200~0299/0209.Minimum-Size-Subarray-Sum/index.html +++ b/website/public/en/ChapterFour/0200~0299/0209.Minimum-Size-Subarray-Sum/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0210.Course-Schedule-II/index.html b/website/public/en/ChapterFour/0200~0299/0210.Course-Schedule-II/index.html index fdd6ad290..498f5c1c9 100644 --- a/website/public/en/ChapterFour/0200~0299/0210.Course-Schedule-II/index.html +++ b/website/public/en/ChapterFour/0200~0299/0210.Course-Schedule-II/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0211.Design-Add-and-Search-Words-Data-Structure/index.html b/website/public/en/ChapterFour/0200~0299/0211.Design-Add-and-Search-Words-Data-Structure/index.html index c0f4adf50..93dfeacdb 100644 --- a/website/public/en/ChapterFour/0200~0299/0211.Design-Add-and-Search-Words-Data-Structure/index.html +++ b/website/public/en/ChapterFour/0200~0299/0211.Design-Add-and-Search-Words-Data-Structure/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0212.Word-Search-II/index.html b/website/public/en/ChapterFour/0200~0299/0212.Word-Search-II/index.html index aa30a3d41..18bba78eb 100644 --- a/website/public/en/ChapterFour/0200~0299/0212.Word-Search-II/index.html +++ b/website/public/en/ChapterFour/0200~0299/0212.Word-Search-II/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0213.House-Robber-II/index.html b/website/public/en/ChapterFour/0200~0299/0213.House-Robber-II/index.html index 0c58c5b18..9c07829cf 100644 --- a/website/public/en/ChapterFour/0200~0299/0213.House-Robber-II/index.html +++ b/website/public/en/ChapterFour/0200~0299/0213.House-Robber-II/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0215.Kth-Largest-Element-in-an-Array/index.html b/website/public/en/ChapterFour/0200~0299/0215.Kth-Largest-Element-in-an-Array/index.html index b934de5e1..a14e2bcca 100644 --- a/website/public/en/ChapterFour/0200~0299/0215.Kth-Largest-Element-in-an-Array/index.html +++ b/website/public/en/ChapterFour/0200~0299/0215.Kth-Largest-Element-in-an-Array/index.html @@ -12413,7 +12413,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0216.Combination-Sum-III/index.html b/website/public/en/ChapterFour/0200~0299/0216.Combination-Sum-III/index.html index 369d9a2a9..57a5b6f67 100644 --- a/website/public/en/ChapterFour/0200~0299/0216.Combination-Sum-III/index.html +++ b/website/public/en/ChapterFour/0200~0299/0216.Combination-Sum-III/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0217.Contains-Duplicate/index.html b/website/public/en/ChapterFour/0200~0299/0217.Contains-Duplicate/index.html index d8d14d59b..e5130192f 100644 --- a/website/public/en/ChapterFour/0200~0299/0217.Contains-Duplicate/index.html +++ b/website/public/en/ChapterFour/0200~0299/0217.Contains-Duplicate/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0218.The-Skyline-Problem/index.html b/website/public/en/ChapterFour/0200~0299/0218.The-Skyline-Problem/index.html index c1436de54..1a1de0a8d 100644 --- a/website/public/en/ChapterFour/0200~0299/0218.The-Skyline-Problem/index.html +++ b/website/public/en/ChapterFour/0200~0299/0218.The-Skyline-Problem/index.html @@ -12701,7 +12701,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0219.Contains-Duplicate-II/index.html b/website/public/en/ChapterFour/0200~0299/0219.Contains-Duplicate-II/index.html index d4264d6fe..89fa1c2f1 100644 --- a/website/public/en/ChapterFour/0200~0299/0219.Contains-Duplicate-II/index.html +++ b/website/public/en/ChapterFour/0200~0299/0219.Contains-Duplicate-II/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0220.Contains-Duplicate-III/index.html b/website/public/en/ChapterFour/0200~0299/0220.Contains-Duplicate-III/index.html index 8e3711c63..8244acc2a 100644 --- a/website/public/en/ChapterFour/0200~0299/0220.Contains-Duplicate-III/index.html +++ b/website/public/en/ChapterFour/0200~0299/0220.Contains-Duplicate-III/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0222.Count-Complete-Tree-Nodes/index.html b/website/public/en/ChapterFour/0200~0299/0222.Count-Complete-Tree-Nodes/index.html index fae5c5f0a..fe805720f 100644 --- a/website/public/en/ChapterFour/0200~0299/0222.Count-Complete-Tree-Nodes/index.html +++ b/website/public/en/ChapterFour/0200~0299/0222.Count-Complete-Tree-Nodes/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0223.Rectangle-Area/index.html b/website/public/en/ChapterFour/0200~0299/0223.Rectangle-Area/index.html index 7ede8dc5a..e9666d474 100644 --- a/website/public/en/ChapterFour/0200~0299/0223.Rectangle-Area/index.html +++ b/website/public/en/ChapterFour/0200~0299/0223.Rectangle-Area/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0224.Basic-Calculator/index.html b/website/public/en/ChapterFour/0200~0299/0224.Basic-Calculator/index.html index 90d67b896..4a4151a5d 100644 --- a/website/public/en/ChapterFour/0200~0299/0224.Basic-Calculator/index.html +++ b/website/public/en/ChapterFour/0200~0299/0224.Basic-Calculator/index.html @@ -12467,7 +12467,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0225.Implement-Stack-using-Queues/index.html b/website/public/en/ChapterFour/0200~0299/0225.Implement-Stack-using-Queues/index.html index 85be2944d..145708e3c 100644 --- a/website/public/en/ChapterFour/0200~0299/0225.Implement-Stack-using-Queues/index.html +++ b/website/public/en/ChapterFour/0200~0299/0225.Implement-Stack-using-Queues/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0226.Invert-Binary-Tree/index.html b/website/public/en/ChapterFour/0200~0299/0226.Invert-Binary-Tree/index.html index 73d3f3f71..84f470c7c 100644 --- a/website/public/en/ChapterFour/0200~0299/0226.Invert-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0200~0299/0226.Invert-Binary-Tree/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0227.Basic-Calculator-II/index.html b/website/public/en/ChapterFour/0200~0299/0227.Basic-Calculator-II/index.html index 51bd8d2f1..60d272699 100644 --- a/website/public/en/ChapterFour/0200~0299/0227.Basic-Calculator-II/index.html +++ b/website/public/en/ChapterFour/0200~0299/0227.Basic-Calculator-II/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0228.Summary-Ranges/index.html b/website/public/en/ChapterFour/0200~0299/0228.Summary-Ranges/index.html index 73dad6054..39a8085a4 100644 --- a/website/public/en/ChapterFour/0200~0299/0228.Summary-Ranges/index.html +++ b/website/public/en/ChapterFour/0200~0299/0228.Summary-Ranges/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0229.Majority-Element-II/index.html b/website/public/en/ChapterFour/0200~0299/0229.Majority-Element-II/index.html index e7e582779..f79413fcc 100644 --- a/website/public/en/ChapterFour/0200~0299/0229.Majority-Element-II/index.html +++ b/website/public/en/ChapterFour/0200~0299/0229.Majority-Element-II/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0230.Kth-Smallest-Element-in-a-BST/index.html b/website/public/en/ChapterFour/0200~0299/0230.Kth-Smallest-Element-in-a-BST/index.html index 6940820a5..21759eac8 100644 --- a/website/public/en/ChapterFour/0200~0299/0230.Kth-Smallest-Element-in-a-BST/index.html +++ b/website/public/en/ChapterFour/0200~0299/0230.Kth-Smallest-Element-in-a-BST/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0231.Power-of-Two/index.html b/website/public/en/ChapterFour/0200~0299/0231.Power-of-Two/index.html index 983239ca6..774829664 100644 --- a/website/public/en/ChapterFour/0200~0299/0231.Power-of-Two/index.html +++ b/website/public/en/ChapterFour/0200~0299/0231.Power-of-Two/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0232.Implement-Queue-using-Stacks/index.html b/website/public/en/ChapterFour/0200~0299/0232.Implement-Queue-using-Stacks/index.html index 3541a845e..c39eab48f 100644 --- a/website/public/en/ChapterFour/0200~0299/0232.Implement-Queue-using-Stacks/index.html +++ b/website/public/en/ChapterFour/0200~0299/0232.Implement-Queue-using-Stacks/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0234.Palindrome-Linked-List/index.html b/website/public/en/ChapterFour/0200~0299/0234.Palindrome-Linked-List/index.html index 7cd686a1b..693fc8886 100644 --- a/website/public/en/ChapterFour/0200~0299/0234.Palindrome-Linked-List/index.html +++ b/website/public/en/ChapterFour/0200~0299/0234.Palindrome-Linked-List/index.html @@ -12428,7 +12428,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0235.Lowest-Common-Ancestor-of-a-Binary-Search-Tree/index.html b/website/public/en/ChapterFour/0200~0299/0235.Lowest-Common-Ancestor-of-a-Binary-Search-Tree/index.html index dad709df6..2f7398b56 100644 --- a/website/public/en/ChapterFour/0200~0299/0235.Lowest-Common-Ancestor-of-a-Binary-Search-Tree/index.html +++ b/website/public/en/ChapterFour/0200~0299/0235.Lowest-Common-Ancestor-of-a-Binary-Search-Tree/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0236.Lowest-Common-Ancestor-of-a-Binary-Tree/index.html b/website/public/en/ChapterFour/0200~0299/0236.Lowest-Common-Ancestor-of-a-Binary-Tree/index.html index da8bd0256..c9adbab85 100644 --- a/website/public/en/ChapterFour/0200~0299/0236.Lowest-Common-Ancestor-of-a-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0200~0299/0236.Lowest-Common-Ancestor-of-a-Binary-Tree/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0237.Delete-Node-in-a-Linked-List/index.html b/website/public/en/ChapterFour/0200~0299/0237.Delete-Node-in-a-Linked-List/index.html index d52d02880..9f8a89d04 100644 --- a/website/public/en/ChapterFour/0200~0299/0237.Delete-Node-in-a-Linked-List/index.html +++ b/website/public/en/ChapterFour/0200~0299/0237.Delete-Node-in-a-Linked-List/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0238.Product-of-Array-Except-Self/index.html b/website/public/en/ChapterFour/0200~0299/0238.Product-of-Array-Except-Self/index.html index cd3b2a80e..331499c03 100644 --- a/website/public/en/ChapterFour/0200~0299/0238.Product-of-Array-Except-Self/index.html +++ b/website/public/en/ChapterFour/0200~0299/0238.Product-of-Array-Except-Self/index.html @@ -12343,7 +12343,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0239.Sliding-Window-Maximum/index.html b/website/public/en/ChapterFour/0200~0299/0239.Sliding-Window-Maximum/index.html index 3346328a7..8beaf9894 100644 --- a/website/public/en/ChapterFour/0200~0299/0239.Sliding-Window-Maximum/index.html +++ b/website/public/en/ChapterFour/0200~0299/0239.Sliding-Window-Maximum/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0240.Search-a-2D-Matrix-II/index.html b/website/public/en/ChapterFour/0200~0299/0240.Search-a-2D-Matrix-II/index.html index 7cedaf0d5..3fa545f6b 100644 --- a/website/public/en/ChapterFour/0200~0299/0240.Search-a-2D-Matrix-II/index.html +++ b/website/public/en/ChapterFour/0200~0299/0240.Search-a-2D-Matrix-II/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0242.Valid-Anagram/index.html b/website/public/en/ChapterFour/0200~0299/0242.Valid-Anagram/index.html index 8bfa91932..913e9504f 100644 --- a/website/public/en/ChapterFour/0200~0299/0242.Valid-Anagram/index.html +++ b/website/public/en/ChapterFour/0200~0299/0242.Valid-Anagram/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0257.Binary-Tree-Paths/index.html b/website/public/en/ChapterFour/0200~0299/0257.Binary-Tree-Paths/index.html index 6d4ba40eb..666794176 100644 --- a/website/public/en/ChapterFour/0200~0299/0257.Binary-Tree-Paths/index.html +++ b/website/public/en/ChapterFour/0200~0299/0257.Binary-Tree-Paths/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0258.Add-Digits/index.html b/website/public/en/ChapterFour/0200~0299/0258.Add-Digits/index.html index c272d8d24..0b5475596 100644 --- a/website/public/en/ChapterFour/0200~0299/0258.Add-Digits/index.html +++ b/website/public/en/ChapterFour/0200~0299/0258.Add-Digits/index.html @@ -12345,7 +12345,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0260.Single-Number-III/index.html b/website/public/en/ChapterFour/0200~0299/0260.Single-Number-III/index.html index 1459f1526..1edf6b6e0 100644 --- a/website/public/en/ChapterFour/0200~0299/0260.Single-Number-III/index.html +++ b/website/public/en/ChapterFour/0200~0299/0260.Single-Number-III/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0263.Ugly-Number/index.html b/website/public/en/ChapterFour/0200~0299/0263.Ugly-Number/index.html index 3e8fd9859..a1be804a0 100644 --- a/website/public/en/ChapterFour/0200~0299/0263.Ugly-Number/index.html +++ b/website/public/en/ChapterFour/0200~0299/0263.Ugly-Number/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0264.Ugly-Number-II/index.html b/website/public/en/ChapterFour/0200~0299/0264.Ugly-Number-II/index.html index 269cc7df1..760718868 100644 --- a/website/public/en/ChapterFour/0200~0299/0264.Ugly-Number-II/index.html +++ b/website/public/en/ChapterFour/0200~0299/0264.Ugly-Number-II/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0268.Missing-Number/index.html b/website/public/en/ChapterFour/0200~0299/0268.Missing-Number/index.html index b3654fb4e..7bdbc6f6e 100644 --- a/website/public/en/ChapterFour/0200~0299/0268.Missing-Number/index.html +++ b/website/public/en/ChapterFour/0200~0299/0268.Missing-Number/index.html @@ -12345,7 +12345,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0274.H-Index/index.html b/website/public/en/ChapterFour/0200~0299/0274.H-Index/index.html index e14507bbd..6a963140d 100644 --- a/website/public/en/ChapterFour/0200~0299/0274.H-Index/index.html +++ b/website/public/en/ChapterFour/0200~0299/0274.H-Index/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0275.H-Index-II/index.html b/website/public/en/ChapterFour/0200~0299/0275.H-Index-II/index.html index 616b0980e..06299d726 100644 --- a/website/public/en/ChapterFour/0200~0299/0275.H-Index-II/index.html +++ b/website/public/en/ChapterFour/0200~0299/0275.H-Index-II/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0278.First-Bad-Version/index.html b/website/public/en/ChapterFour/0200~0299/0278.First-Bad-Version/index.html index 2a9c5b49c..9f4befa7e 100644 --- a/website/public/en/ChapterFour/0200~0299/0278.First-Bad-Version/index.html +++ b/website/public/en/ChapterFour/0200~0299/0278.First-Bad-Version/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0279.Perfect-Squares/index.html b/website/public/en/ChapterFour/0200~0299/0279.Perfect-Squares/index.html index c3ab05549..aabb2a904 100644 --- a/website/public/en/ChapterFour/0200~0299/0279.Perfect-Squares/index.html +++ b/website/public/en/ChapterFour/0200~0299/0279.Perfect-Squares/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0283.Move-Zeroes/index.html b/website/public/en/ChapterFour/0200~0299/0283.Move-Zeroes/index.html index 4ec94220a..6346fd801 100644 --- a/website/public/en/ChapterFour/0200~0299/0283.Move-Zeroes/index.html +++ b/website/public/en/ChapterFour/0200~0299/0283.Move-Zeroes/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0284.Peeking-Iterator/index.html b/website/public/en/ChapterFour/0200~0299/0284.Peeking-Iterator/index.html index 70b634ebe..1ab04d697 100644 --- a/website/public/en/ChapterFour/0200~0299/0284.Peeking-Iterator/index.html +++ b/website/public/en/ChapterFour/0200~0299/0284.Peeking-Iterator/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0287.Find-the-Duplicate-Number/index.html b/website/public/en/ChapterFour/0200~0299/0287.Find-the-Duplicate-Number/index.html index 59183aba5..d848b08cd 100644 --- a/website/public/en/ChapterFour/0200~0299/0287.Find-the-Duplicate-Number/index.html +++ b/website/public/en/ChapterFour/0200~0299/0287.Find-the-Duplicate-Number/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0290.Word-Pattern/index.html b/website/public/en/ChapterFour/0200~0299/0290.Word-Pattern/index.html index edd453515..9fe545fe6 100644 --- a/website/public/en/ChapterFour/0200~0299/0290.Word-Pattern/index.html +++ b/website/public/en/ChapterFour/0200~0299/0290.Word-Pattern/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0297.Serialize-and-Deserialize-Binary-Tree/index.html b/website/public/en/ChapterFour/0200~0299/0297.Serialize-and-Deserialize-Binary-Tree/index.html index d89734ac1..303daba2d 100644 --- a/website/public/en/ChapterFour/0200~0299/0297.Serialize-and-Deserialize-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0200~0299/0297.Serialize-and-Deserialize-Binary-Tree/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/0299.Bulls-and-Cows/index.html b/website/public/en/ChapterFour/0200~0299/0299.Bulls-and-Cows/index.html index b46b3712c..46fd9f808 100644 --- a/website/public/en/ChapterFour/0200~0299/0299.Bulls-and-Cows/index.html +++ b/website/public/en/ChapterFour/0200~0299/0299.Bulls-and-Cows/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0200~0299/index.html b/website/public/en/ChapterFour/0200~0299/index.html index 951b98f17..eae4bc912 100644 --- a/website/public/en/ChapterFour/0200~0299/index.html +++ b/website/public/en/ChapterFour/0200~0299/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0300.Longest-Increasing-Subsequence/index.html b/website/public/en/ChapterFour/0300~0399/0300.Longest-Increasing-Subsequence/index.html index 26cc46b24..30e00e74a 100644 --- a/website/public/en/ChapterFour/0300~0399/0300.Longest-Increasing-Subsequence/index.html +++ b/website/public/en/ChapterFour/0300~0399/0300.Longest-Increasing-Subsequence/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0301.Remove-Invalid-Parentheses/index.html b/website/public/en/ChapterFour/0300~0399/0301.Remove-Invalid-Parentheses/index.html index e8a9ebcb8..458f9b005 100644 --- a/website/public/en/ChapterFour/0300~0399/0301.Remove-Invalid-Parentheses/index.html +++ b/website/public/en/ChapterFour/0300~0399/0301.Remove-Invalid-Parentheses/index.html @@ -12436,7 +12436,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0303.Range-Sum-Query-Immutable/index.html b/website/public/en/ChapterFour/0300~0399/0303.Range-Sum-Query-Immutable/index.html index b54d94b2c..da7e1cca8 100644 --- a/website/public/en/ChapterFour/0300~0399/0303.Range-Sum-Query-Immutable/index.html +++ b/website/public/en/ChapterFour/0300~0399/0303.Range-Sum-Query-Immutable/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0304.Range-Sum-Query-2D-Immutable/index.html b/website/public/en/ChapterFour/0300~0399/0304.Range-Sum-Query-2D-Immutable/index.html index a204cf99a..eb3f24884 100644 --- a/website/public/en/ChapterFour/0300~0399/0304.Range-Sum-Query-2D-Immutable/index.html +++ b/website/public/en/ChapterFour/0300~0399/0304.Range-Sum-Query-2D-Immutable/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0306.Additive-Number/index.html b/website/public/en/ChapterFour/0300~0399/0306.Additive-Number/index.html index 1a3fc7718..23df7d989 100644 --- a/website/public/en/ChapterFour/0300~0399/0306.Additive-Number/index.html +++ b/website/public/en/ChapterFour/0300~0399/0306.Additive-Number/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0307.Range-Sum-Query-Mutable/index.html b/website/public/en/ChapterFour/0300~0399/0307.Range-Sum-Query-Mutable/index.html index 14e20d9d9..9a0f31ccc 100644 --- a/website/public/en/ChapterFour/0300~0399/0307.Range-Sum-Query-Mutable/index.html +++ b/website/public/en/ChapterFour/0300~0399/0307.Range-Sum-Query-Mutable/index.html @@ -12450,7 +12450,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0309.Best-Time-to-Buy-and-Sell-Stock-with-Cooldown/index.html b/website/public/en/ChapterFour/0300~0399/0309.Best-Time-to-Buy-and-Sell-Stock-with-Cooldown/index.html index 2a68e841b..7343b9471 100644 --- a/website/public/en/ChapterFour/0300~0399/0309.Best-Time-to-Buy-and-Sell-Stock-with-Cooldown/index.html +++ b/website/public/en/ChapterFour/0300~0399/0309.Best-Time-to-Buy-and-Sell-Stock-with-Cooldown/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0315.Count-of-Smaller-Numbers-After-Self/index.html b/website/public/en/ChapterFour/0300~0399/0315.Count-of-Smaller-Numbers-After-Self/index.html index e2857e763..159c73140 100644 --- a/website/public/en/ChapterFour/0300~0399/0315.Count-of-Smaller-Numbers-After-Self/index.html +++ b/website/public/en/ChapterFour/0300~0399/0315.Count-of-Smaller-Numbers-After-Self/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0316.Remove-Duplicate-Letters/index.html b/website/public/en/ChapterFour/0300~0399/0316.Remove-Duplicate-Letters/index.html index 8de45b764..05df5d0fc 100644 --- a/website/public/en/ChapterFour/0300~0399/0316.Remove-Duplicate-Letters/index.html +++ b/website/public/en/ChapterFour/0300~0399/0316.Remove-Duplicate-Letters/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0318.Maximum-Product-of-Word-Lengths/index.html b/website/public/en/ChapterFour/0300~0399/0318.Maximum-Product-of-Word-Lengths/index.html index b0e0fa857..1327b09bd 100644 --- a/website/public/en/ChapterFour/0300~0399/0318.Maximum-Product-of-Word-Lengths/index.html +++ b/website/public/en/ChapterFour/0300~0399/0318.Maximum-Product-of-Word-Lengths/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0319.Bulb-Switcher/index.html b/website/public/en/ChapterFour/0300~0399/0319.Bulb-Switcher/index.html index deb88e4c9..d677c9c2e 100644 --- a/website/public/en/ChapterFour/0300~0399/0319.Bulb-Switcher/index.html +++ b/website/public/en/ChapterFour/0300~0399/0319.Bulb-Switcher/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0322.Coin-Change/index.html b/website/public/en/ChapterFour/0300~0399/0322.Coin-Change/index.html index 70387db65..3f4f8452f 100644 --- a/website/public/en/ChapterFour/0300~0399/0322.Coin-Change/index.html +++ b/website/public/en/ChapterFour/0300~0399/0322.Coin-Change/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0324.Wiggle-Sort-II/index.html b/website/public/en/ChapterFour/0300~0399/0324.Wiggle-Sort-II/index.html index 1c4a6f18f..02e178708 100644 --- a/website/public/en/ChapterFour/0300~0399/0324.Wiggle-Sort-II/index.html +++ b/website/public/en/ChapterFour/0300~0399/0324.Wiggle-Sort-II/index.html @@ -12492,7 +12492,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0326.Power-of-Three/index.html b/website/public/en/ChapterFour/0300~0399/0326.Power-of-Three/index.html index 6cd1f0596..79552eda6 100644 --- a/website/public/en/ChapterFour/0300~0399/0326.Power-of-Three/index.html +++ b/website/public/en/ChapterFour/0300~0399/0326.Power-of-Three/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0327.Count-of-Range-Sum/index.html b/website/public/en/ChapterFour/0300~0399/0327.Count-of-Range-Sum/index.html index 6ba0fae72..8944afb8d 100644 --- a/website/public/en/ChapterFour/0300~0399/0327.Count-of-Range-Sum/index.html +++ b/website/public/en/ChapterFour/0300~0399/0327.Count-of-Range-Sum/index.html @@ -12482,7 +12482,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0328.Odd-Even-Linked-List/index.html b/website/public/en/ChapterFour/0300~0399/0328.Odd-Even-Linked-List/index.html index 520f03b6b..704c7ec8e 100644 --- a/website/public/en/ChapterFour/0300~0399/0328.Odd-Even-Linked-List/index.html +++ b/website/public/en/ChapterFour/0300~0399/0328.Odd-Even-Linked-List/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0329.Longest-Increasing-Path-in-a-Matrix/index.html b/website/public/en/ChapterFour/0300~0399/0329.Longest-Increasing-Path-in-a-Matrix/index.html index 0aebe4681..74a9ca57d 100644 --- a/website/public/en/ChapterFour/0300~0399/0329.Longest-Increasing-Path-in-a-Matrix/index.html +++ b/website/public/en/ChapterFour/0300~0399/0329.Longest-Increasing-Path-in-a-Matrix/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree/index.html b/website/public/en/ChapterFour/0300~0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree/index.html index a7f5d47e3..0552fdf60 100644 --- a/website/public/en/ChapterFour/0300~0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0300~0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0337.House-Robber-III/index.html b/website/public/en/ChapterFour/0300~0399/0337.House-Robber-III/index.html index 42035b087..9b226e952 100644 --- a/website/public/en/ChapterFour/0300~0399/0337.House-Robber-III/index.html +++ b/website/public/en/ChapterFour/0300~0399/0337.House-Robber-III/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0338.Counting-Bits/index.html b/website/public/en/ChapterFour/0300~0399/0338.Counting-Bits/index.html index b8849051d..95626b1c0 100644 --- a/website/public/en/ChapterFour/0300~0399/0338.Counting-Bits/index.html +++ b/website/public/en/ChapterFour/0300~0399/0338.Counting-Bits/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0341.Flatten-Nested-List-Iterator/index.html b/website/public/en/ChapterFour/0300~0399/0341.Flatten-Nested-List-Iterator/index.html index 6ca7eeb10..7bb68936e 100644 --- a/website/public/en/ChapterFour/0300~0399/0341.Flatten-Nested-List-Iterator/index.html +++ b/website/public/en/ChapterFour/0300~0399/0341.Flatten-Nested-List-Iterator/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0342.Power-of-Four/index.html b/website/public/en/ChapterFour/0300~0399/0342.Power-of-Four/index.html index f87417f68..a78c33404 100644 --- a/website/public/en/ChapterFour/0300~0399/0342.Power-of-Four/index.html +++ b/website/public/en/ChapterFour/0300~0399/0342.Power-of-Four/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0343.Integer-Break/index.html b/website/public/en/ChapterFour/0300~0399/0343.Integer-Break/index.html index e8e9c189e..411c90485 100644 --- a/website/public/en/ChapterFour/0300~0399/0343.Integer-Break/index.html +++ b/website/public/en/ChapterFour/0300~0399/0343.Integer-Break/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0344.Reverse-String/index.html b/website/public/en/ChapterFour/0300~0399/0344.Reverse-String/index.html index fb4d05d02..0401f7b9c 100644 --- a/website/public/en/ChapterFour/0300~0399/0344.Reverse-String/index.html +++ b/website/public/en/ChapterFour/0300~0399/0344.Reverse-String/index.html @@ -12348,7 +12348,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0345.Reverse-Vowels-of-a-String/index.html b/website/public/en/ChapterFour/0300~0399/0345.Reverse-Vowels-of-a-String/index.html index ccbdd4c08..a428c04c3 100644 --- a/website/public/en/ChapterFour/0300~0399/0345.Reverse-Vowels-of-a-String/index.html +++ b/website/public/en/ChapterFour/0300~0399/0345.Reverse-Vowels-of-a-String/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0347.Top-K-Frequent-Elements/index.html b/website/public/en/ChapterFour/0300~0399/0347.Top-K-Frequent-Elements/index.html index 250fea767..e4b380807 100644 --- a/website/public/en/ChapterFour/0300~0399/0347.Top-K-Frequent-Elements/index.html +++ b/website/public/en/ChapterFour/0300~0399/0347.Top-K-Frequent-Elements/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0349.Intersection-of-Two-Arrays/index.html b/website/public/en/ChapterFour/0300~0399/0349.Intersection-of-Two-Arrays/index.html index ebfe66832..a88b2ca74 100644 --- a/website/public/en/ChapterFour/0300~0399/0349.Intersection-of-Two-Arrays/index.html +++ b/website/public/en/ChapterFour/0300~0399/0349.Intersection-of-Two-Arrays/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II/index.html b/website/public/en/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II/index.html index ced53b32f..c133233c9 100644 --- a/website/public/en/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II/index.html +++ b/website/public/en/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0351.Android-Unlock-Patterns/index.html b/website/public/en/ChapterFour/0300~0399/0351.Android-Unlock-Patterns/index.html index 6bde92a0a..ed10567b4 100644 --- a/website/public/en/ChapterFour/0300~0399/0351.Android-Unlock-Patterns/index.html +++ b/website/public/en/ChapterFour/0300~0399/0351.Android-Unlock-Patterns/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0352.Data-Stream-as-Disjoint-Intervals/index.html b/website/public/en/ChapterFour/0300~0399/0352.Data-Stream-as-Disjoint-Intervals/index.html index 31dec730a..f12a9a224 100644 --- a/website/public/en/ChapterFour/0300~0399/0352.Data-Stream-as-Disjoint-Intervals/index.html +++ b/website/public/en/ChapterFour/0300~0399/0352.Data-Stream-as-Disjoint-Intervals/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0354.Russian-Doll-Envelopes/index.html b/website/public/en/ChapterFour/0300~0399/0354.Russian-Doll-Envelopes/index.html index ada9c0056..dde6f116b 100644 --- a/website/public/en/ChapterFour/0300~0399/0354.Russian-Doll-Envelopes/index.html +++ b/website/public/en/ChapterFour/0300~0399/0354.Russian-Doll-Envelopes/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0357.Count-Numbers-with-Unique-Digits/index.html b/website/public/en/ChapterFour/0300~0399/0357.Count-Numbers-with-Unique-Digits/index.html index 4f6a450e0..a894f717b 100644 --- a/website/public/en/ChapterFour/0300~0399/0357.Count-Numbers-with-Unique-Digits/index.html +++ b/website/public/en/ChapterFour/0300~0399/0357.Count-Numbers-with-Unique-Digits/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0363.Max-Sum-of-Rectangle-No-Larger-Than-K/index.html b/website/public/en/ChapterFour/0300~0399/0363.Max-Sum-of-Rectangle-No-Larger-Than-K/index.html index 3acb19a26..dca6c53a9 100644 --- a/website/public/en/ChapterFour/0300~0399/0363.Max-Sum-of-Rectangle-No-Larger-Than-K/index.html +++ b/website/public/en/ChapterFour/0300~0399/0363.Max-Sum-of-Rectangle-No-Larger-Than-K/index.html @@ -12438,7 +12438,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0367.Valid-Perfect-Square/index.html b/website/public/en/ChapterFour/0300~0399/0367.Valid-Perfect-Square/index.html index 04931aa84..38ff32672 100644 --- a/website/public/en/ChapterFour/0300~0399/0367.Valid-Perfect-Square/index.html +++ b/website/public/en/ChapterFour/0300~0399/0367.Valid-Perfect-Square/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0368.Largest-Divisible-Subset/index.html b/website/public/en/ChapterFour/0300~0399/0368.Largest-Divisible-Subset/index.html index 685ca4fc3..bc7f7ff4b 100644 --- a/website/public/en/ChapterFour/0300~0399/0368.Largest-Divisible-Subset/index.html +++ b/website/public/en/ChapterFour/0300~0399/0368.Largest-Divisible-Subset/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0371.Sum-of-Two-Integers/index.html b/website/public/en/ChapterFour/0300~0399/0371.Sum-of-Two-Integers/index.html index 553947999..326760538 100644 --- a/website/public/en/ChapterFour/0300~0399/0371.Sum-of-Two-Integers/index.html +++ b/website/public/en/ChapterFour/0300~0399/0371.Sum-of-Two-Integers/index.html @@ -12347,7 +12347,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0372.Super-Pow/index.html b/website/public/en/ChapterFour/0300~0399/0372.Super-Pow/index.html index 17ac5e31b..83a004585 100644 --- a/website/public/en/ChapterFour/0300~0399/0372.Super-Pow/index.html +++ b/website/public/en/ChapterFour/0300~0399/0372.Super-Pow/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0373.Find-K-Pairs-with-Smallest-Sums/index.html b/website/public/en/ChapterFour/0300~0399/0373.Find-K-Pairs-with-Smallest-Sums/index.html index e6a347fad..87f7507aa 100644 --- a/website/public/en/ChapterFour/0300~0399/0373.Find-K-Pairs-with-Smallest-Sums/index.html +++ b/website/public/en/ChapterFour/0300~0399/0373.Find-K-Pairs-with-Smallest-Sums/index.html @@ -12419,7 +12419,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0374.Guess-Number-Higher-or-Lower/index.html b/website/public/en/ChapterFour/0300~0399/0374.Guess-Number-Higher-or-Lower/index.html index 9dae4890a..1cf9f0b98 100644 --- a/website/public/en/ChapterFour/0300~0399/0374.Guess-Number-Higher-or-Lower/index.html +++ b/website/public/en/ChapterFour/0300~0399/0374.Guess-Number-Higher-or-Lower/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0376.Wiggle-Subsequence/index.html b/website/public/en/ChapterFour/0300~0399/0376.Wiggle-Subsequence/index.html index ef9b61bb2..0cb6cc991 100644 --- a/website/public/en/ChapterFour/0300~0399/0376.Wiggle-Subsequence/index.html +++ b/website/public/en/ChapterFour/0300~0399/0376.Wiggle-Subsequence/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0377.Combination-Sum-IV/index.html b/website/public/en/ChapterFour/0300~0399/0377.Combination-Sum-IV/index.html index 7f45d81dc..44b82bb9d 100644 --- a/website/public/en/ChapterFour/0300~0399/0377.Combination-Sum-IV/index.html +++ b/website/public/en/ChapterFour/0300~0399/0377.Combination-Sum-IV/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0378.Kth-Smallest-Element-in-a-Sorted-Matrix/index.html b/website/public/en/ChapterFour/0300~0399/0378.Kth-Smallest-Element-in-a-Sorted-Matrix/index.html index 50e1e4d82..4283acf64 100644 --- a/website/public/en/ChapterFour/0300~0399/0378.Kth-Smallest-Element-in-a-Sorted-Matrix/index.html +++ b/website/public/en/ChapterFour/0300~0399/0378.Kth-Smallest-Element-in-a-Sorted-Matrix/index.html @@ -12430,7 +12430,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0382.Linked-List-Random-Node/index.html b/website/public/en/ChapterFour/0300~0399/0382.Linked-List-Random-Node/index.html index 1babe7841..99ff9ccc7 100644 --- a/website/public/en/ChapterFour/0300~0399/0382.Linked-List-Random-Node/index.html +++ b/website/public/en/ChapterFour/0300~0399/0382.Linked-List-Random-Node/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0383.Ransom-Note/index.html b/website/public/en/ChapterFour/0300~0399/0383.Ransom-Note/index.html index 58d9cc0ba..721290cf7 100644 --- a/website/public/en/ChapterFour/0300~0399/0383.Ransom-Note/index.html +++ b/website/public/en/ChapterFour/0300~0399/0383.Ransom-Note/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0384.Shuffle-an-Array/index.html b/website/public/en/ChapterFour/0300~0399/0384.Shuffle-an-Array/index.html index 43c068f73..29a9970f7 100644 --- a/website/public/en/ChapterFour/0300~0399/0384.Shuffle-an-Array/index.html +++ b/website/public/en/ChapterFour/0300~0399/0384.Shuffle-an-Array/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0385.Mini-Parser/index.html b/website/public/en/ChapterFour/0300~0399/0385.Mini-Parser/index.html index eebf4b610..0f191f8f0 100644 --- a/website/public/en/ChapterFour/0300~0399/0385.Mini-Parser/index.html +++ b/website/public/en/ChapterFour/0300~0399/0385.Mini-Parser/index.html @@ -12472,7 +12472,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0386.Lexicographical-Numbers/index.html b/website/public/en/ChapterFour/0300~0399/0386.Lexicographical-Numbers/index.html index 240c3654a..08c427d63 100644 --- a/website/public/en/ChapterFour/0300~0399/0386.Lexicographical-Numbers/index.html +++ b/website/public/en/ChapterFour/0300~0399/0386.Lexicographical-Numbers/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0387.First-Unique-Character-in-a-String/index.html b/website/public/en/ChapterFour/0300~0399/0387.First-Unique-Character-in-a-String/index.html index 9bbb68163..41a598140 100644 --- a/website/public/en/ChapterFour/0300~0399/0387.First-Unique-Character-in-a-String/index.html +++ b/website/public/en/ChapterFour/0300~0399/0387.First-Unique-Character-in-a-String/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0389.Find-the-Difference/index.html b/website/public/en/ChapterFour/0300~0399/0389.Find-the-Difference/index.html index 4f47e1cdb..c44a48872 100644 --- a/website/public/en/ChapterFour/0300~0399/0389.Find-the-Difference/index.html +++ b/website/public/en/ChapterFour/0300~0399/0389.Find-the-Difference/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0390.Elimination-Game/index.html b/website/public/en/ChapterFour/0300~0399/0390.Elimination-Game/index.html index ade84f691..01149e2ed 100644 --- a/website/public/en/ChapterFour/0300~0399/0390.Elimination-Game/index.html +++ b/website/public/en/ChapterFour/0300~0399/0390.Elimination-Game/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0391.Perfect-Rectangle/index.html b/website/public/en/ChapterFour/0300~0399/0391.Perfect-Rectangle/index.html index 0b0f5c522..45559235c 100644 --- a/website/public/en/ChapterFour/0300~0399/0391.Perfect-Rectangle/index.html +++ b/website/public/en/ChapterFour/0300~0399/0391.Perfect-Rectangle/index.html @@ -12413,7 +12413,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0392.Is-Subsequence/index.html b/website/public/en/ChapterFour/0300~0399/0392.Is-Subsequence/index.html index 7e15ea6d6..99e2b36ee 100644 --- a/website/public/en/ChapterFour/0300~0399/0392.Is-Subsequence/index.html +++ b/website/public/en/ChapterFour/0300~0399/0392.Is-Subsequence/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0393.UTF-8-Validation/index.html b/website/public/en/ChapterFour/0300~0399/0393.UTF-8-Validation/index.html index 8d3f138be..30f497543 100644 --- a/website/public/en/ChapterFour/0300~0399/0393.UTF-8-Validation/index.html +++ b/website/public/en/ChapterFour/0300~0399/0393.UTF-8-Validation/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0394.Decode-String/index.html b/website/public/en/ChapterFour/0300~0399/0394.Decode-String/index.html index 0d336a520..98c3d5fb6 100644 --- a/website/public/en/ChapterFour/0300~0399/0394.Decode-String/index.html +++ b/website/public/en/ChapterFour/0300~0399/0394.Decode-String/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0395.Longest-Substring-with-At-Least-K-Repeating-Characters/index.html b/website/public/en/ChapterFour/0300~0399/0395.Longest-Substring-with-At-Least-K-Repeating-Characters/index.html index 63951ee59..6c003ffe4 100644 --- a/website/public/en/ChapterFour/0300~0399/0395.Longest-Substring-with-At-Least-K-Repeating-Characters/index.html +++ b/website/public/en/ChapterFour/0300~0399/0395.Longest-Substring-with-At-Least-K-Repeating-Characters/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0396.Rotate-Function/index.html b/website/public/en/ChapterFour/0300~0399/0396.Rotate-Function/index.html index 8fb728f7e..7814fdbc7 100644 --- a/website/public/en/ChapterFour/0300~0399/0396.Rotate-Function/index.html +++ b/website/public/en/ChapterFour/0300~0399/0396.Rotate-Function/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0397.Integer-Replacement/index.html b/website/public/en/ChapterFour/0300~0399/0397.Integer-Replacement/index.html index da19f1b62..69aa40ec2 100644 --- a/website/public/en/ChapterFour/0300~0399/0397.Integer-Replacement/index.html +++ b/website/public/en/ChapterFour/0300~0399/0397.Integer-Replacement/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/0399.Evaluate-Division/index.html b/website/public/en/ChapterFour/0300~0399/0399.Evaluate-Division/index.html index 09a46b16c..8a1dc770d 100644 --- a/website/public/en/ChapterFour/0300~0399/0399.Evaluate-Division/index.html +++ b/website/public/en/ChapterFour/0300~0399/0399.Evaluate-Division/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0300~0399/index.html b/website/public/en/ChapterFour/0300~0399/index.html index 0df8cca9d..b2dac6c22 100644 --- a/website/public/en/ChapterFour/0300~0399/index.html +++ b/website/public/en/ChapterFour/0300~0399/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0400.Nth-Digit/index.html b/website/public/en/ChapterFour/0400~0499/0400.Nth-Digit/index.html index cdee419e4..aa86542b5 100644 --- a/website/public/en/ChapterFour/0400~0499/0400.Nth-Digit/index.html +++ b/website/public/en/ChapterFour/0400~0499/0400.Nth-Digit/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0401.Binary-Watch/index.html b/website/public/en/ChapterFour/0400~0499/0401.Binary-Watch/index.html index c747e0246..c24a725ee 100644 --- a/website/public/en/ChapterFour/0400~0499/0401.Binary-Watch/index.html +++ b/website/public/en/ChapterFour/0400~0499/0401.Binary-Watch/index.html @@ -12471,7 +12471,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0402.Remove-K-Digits/index.html b/website/public/en/ChapterFour/0400~0499/0402.Remove-K-Digits/index.html index db98db8c2..5fb052021 100644 --- a/website/public/en/ChapterFour/0400~0499/0402.Remove-K-Digits/index.html +++ b/website/public/en/ChapterFour/0400~0499/0402.Remove-K-Digits/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0404.Sum-of-Left-Leaves/index.html b/website/public/en/ChapterFour/0400~0499/0404.Sum-of-Left-Leaves/index.html index d9d1c2dfd..277384a3b 100644 --- a/website/public/en/ChapterFour/0400~0499/0404.Sum-of-Left-Leaves/index.html +++ b/website/public/en/ChapterFour/0400~0499/0404.Sum-of-Left-Leaves/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0405.Convert-a-Number-to-Hexadecimal/index.html b/website/public/en/ChapterFour/0400~0499/0405.Convert-a-Number-to-Hexadecimal/index.html index bebcc841f..b10f13ba2 100644 --- a/website/public/en/ChapterFour/0400~0499/0405.Convert-a-Number-to-Hexadecimal/index.html +++ b/website/public/en/ChapterFour/0400~0499/0405.Convert-a-Number-to-Hexadecimal/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0409.Longest-Palindrome/index.html b/website/public/en/ChapterFour/0400~0499/0409.Longest-Palindrome/index.html index 0175ba7b1..d083b208b 100644 --- a/website/public/en/ChapterFour/0400~0499/0409.Longest-Palindrome/index.html +++ b/website/public/en/ChapterFour/0400~0499/0409.Longest-Palindrome/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0410.Split-Array-Largest-Sum/index.html b/website/public/en/ChapterFour/0400~0499/0410.Split-Array-Largest-Sum/index.html index 8bddb8b27..ee684a6d8 100644 --- a/website/public/en/ChapterFour/0400~0499/0410.Split-Array-Largest-Sum/index.html +++ b/website/public/en/ChapterFour/0400~0499/0410.Split-Array-Largest-Sum/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0412.Fizz-Buzz/index.html b/website/public/en/ChapterFour/0400~0499/0412.Fizz-Buzz/index.html index 4a7958f17..8a8b2b8eb 100644 --- a/website/public/en/ChapterFour/0400~0499/0412.Fizz-Buzz/index.html +++ b/website/public/en/ChapterFour/0400~0499/0412.Fizz-Buzz/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0413.Arithmetic-Slices/index.html b/website/public/en/ChapterFour/0400~0499/0413.Arithmetic-Slices/index.html index 144708baf..65179ed41 100644 --- a/website/public/en/ChapterFour/0400~0499/0413.Arithmetic-Slices/index.html +++ b/website/public/en/ChapterFour/0400~0499/0413.Arithmetic-Slices/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0414.Third-Maximum-Number/index.html b/website/public/en/ChapterFour/0400~0499/0414.Third-Maximum-Number/index.html index cd5817702..0462af17f 100644 --- a/website/public/en/ChapterFour/0400~0499/0414.Third-Maximum-Number/index.html +++ b/website/public/en/ChapterFour/0400~0499/0414.Third-Maximum-Number/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0416.Partition-Equal-Subset-Sum/index.html b/website/public/en/ChapterFour/0400~0499/0416.Partition-Equal-Subset-Sum/index.html index f32f6eb3b..ba93d2034 100644 --- a/website/public/en/ChapterFour/0400~0499/0416.Partition-Equal-Subset-Sum/index.html +++ b/website/public/en/ChapterFour/0400~0499/0416.Partition-Equal-Subset-Sum/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0417.Pacific-Atlantic-Water-Flow/index.html b/website/public/en/ChapterFour/0400~0499/0417.Pacific-Atlantic-Water-Flow/index.html index 9a1c8922d..9352d1bb5 100644 --- a/website/public/en/ChapterFour/0400~0499/0417.Pacific-Atlantic-Water-Flow/index.html +++ b/website/public/en/ChapterFour/0400~0499/0417.Pacific-Atlantic-Water-Flow/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0419.Battleships-in-a-Board/index.html b/website/public/en/ChapterFour/0400~0499/0419.Battleships-in-a-Board/index.html index 57a60f160..2971a3de7 100644 --- a/website/public/en/ChapterFour/0400~0499/0419.Battleships-in-a-Board/index.html +++ b/website/public/en/ChapterFour/0400~0499/0419.Battleships-in-a-Board/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0421.Maximum-XOR-of-Two-Numbers-in-an-Array/index.html b/website/public/en/ChapterFour/0400~0499/0421.Maximum-XOR-of-Two-Numbers-in-an-Array/index.html index 1858549fd..85b5bca43 100644 --- a/website/public/en/ChapterFour/0400~0499/0421.Maximum-XOR-of-Two-Numbers-in-an-Array/index.html +++ b/website/public/en/ChapterFour/0400~0499/0421.Maximum-XOR-of-Two-Numbers-in-an-Array/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0423.Reconstruct-Original-Digits-from-English/index.html b/website/public/en/ChapterFour/0400~0499/0423.Reconstruct-Original-Digits-from-English/index.html index 9e525c870..a2e732641 100644 --- a/website/public/en/ChapterFour/0400~0499/0423.Reconstruct-Original-Digits-from-English/index.html +++ b/website/public/en/ChapterFour/0400~0499/0423.Reconstruct-Original-Digits-from-English/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0424.Longest-Repeating-Character-Replacement/index.html b/website/public/en/ChapterFour/0400~0499/0424.Longest-Repeating-Character-Replacement/index.html index a689c3d33..fcee43137 100644 --- a/website/public/en/ChapterFour/0400~0499/0424.Longest-Repeating-Character-Replacement/index.html +++ b/website/public/en/ChapterFour/0400~0499/0424.Longest-Repeating-Character-Replacement/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0429.N-ary-Tree-Level-Order-Traversal/index.html b/website/public/en/ChapterFour/0400~0499/0429.N-ary-Tree-Level-Order-Traversal/index.html index 3d8d8eec9..a9d20ca55 100644 --- a/website/public/en/ChapterFour/0400~0499/0429.N-ary-Tree-Level-Order-Traversal/index.html +++ b/website/public/en/ChapterFour/0400~0499/0429.N-ary-Tree-Level-Order-Traversal/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0433.Minimum-Genetic-Mutation/index.html b/website/public/en/ChapterFour/0400~0499/0433.Minimum-Genetic-Mutation/index.html index 625999d9d..79cd77926 100644 --- a/website/public/en/ChapterFour/0400~0499/0433.Minimum-Genetic-Mutation/index.html +++ b/website/public/en/ChapterFour/0400~0499/0433.Minimum-Genetic-Mutation/index.html @@ -12475,7 +12475,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0434.Number-of-Segments-in-a-String/index.html b/website/public/en/ChapterFour/0400~0499/0434.Number-of-Segments-in-a-String/index.html index 0c09233df..3e2d3c79a 100644 --- a/website/public/en/ChapterFour/0400~0499/0434.Number-of-Segments-in-a-String/index.html +++ b/website/public/en/ChapterFour/0400~0499/0434.Number-of-Segments-in-a-String/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0435.Non-overlapping-Intervals/index.html b/website/public/en/ChapterFour/0400~0499/0435.Non-overlapping-Intervals/index.html index 16315f9e2..f2687d541 100644 --- a/website/public/en/ChapterFour/0400~0499/0435.Non-overlapping-Intervals/index.html +++ b/website/public/en/ChapterFour/0400~0499/0435.Non-overlapping-Intervals/index.html @@ -12429,7 +12429,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0436.Find-Right-Interval/index.html b/website/public/en/ChapterFour/0400~0499/0436.Find-Right-Interval/index.html index db1d5a1a4..bb1d61aa6 100644 --- a/website/public/en/ChapterFour/0400~0499/0436.Find-Right-Interval/index.html +++ b/website/public/en/ChapterFour/0400~0499/0436.Find-Right-Interval/index.html @@ -12432,7 +12432,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0437.Path-Sum-III/index.html b/website/public/en/ChapterFour/0400~0499/0437.Path-Sum-III/index.html index b20fae4d8..c99be8b04 100644 --- a/website/public/en/ChapterFour/0400~0499/0437.Path-Sum-III/index.html +++ b/website/public/en/ChapterFour/0400~0499/0437.Path-Sum-III/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0438.Find-All-Anagrams-in-a-String/index.html b/website/public/en/ChapterFour/0400~0499/0438.Find-All-Anagrams-in-a-String/index.html index c06dd6d6a..d98a520f1 100644 --- a/website/public/en/ChapterFour/0400~0499/0438.Find-All-Anagrams-in-a-String/index.html +++ b/website/public/en/ChapterFour/0400~0499/0438.Find-All-Anagrams-in-a-String/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0441.Arranging-Coins/index.html b/website/public/en/ChapterFour/0400~0499/0441.Arranging-Coins/index.html index adbe83a02..69398d6b0 100644 --- a/website/public/en/ChapterFour/0400~0499/0441.Arranging-Coins/index.html +++ b/website/public/en/ChapterFour/0400~0499/0441.Arranging-Coins/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0445.Add-Two-Numbers-II/index.html b/website/public/en/ChapterFour/0400~0499/0445.Add-Two-Numbers-II/index.html index fa594023b..319309ed8 100644 --- a/website/public/en/ChapterFour/0400~0499/0445.Add-Two-Numbers-II/index.html +++ b/website/public/en/ChapterFour/0400~0499/0445.Add-Two-Numbers-II/index.html @@ -12476,7 +12476,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0447.Number-of-Boomerangs/index.html b/website/public/en/ChapterFour/0400~0499/0447.Number-of-Boomerangs/index.html index 538de7897..867f83512 100644 --- a/website/public/en/ChapterFour/0400~0499/0447.Number-of-Boomerangs/index.html +++ b/website/public/en/ChapterFour/0400~0499/0447.Number-of-Boomerangs/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0448.Find-All-Numbers-Disappeared-in-an-Array/index.html b/website/public/en/ChapterFour/0400~0499/0448.Find-All-Numbers-Disappeared-in-an-Array/index.html index 8aec326f0..6b7937646 100644 --- a/website/public/en/ChapterFour/0400~0499/0448.Find-All-Numbers-Disappeared-in-an-Array/index.html +++ b/website/public/en/ChapterFour/0400~0499/0448.Find-All-Numbers-Disappeared-in-an-Array/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0451.Sort-Characters-By-Frequency/index.html b/website/public/en/ChapterFour/0400~0499/0451.Sort-Characters-By-Frequency/index.html index 9578f7c76..61111b830 100644 --- a/website/public/en/ChapterFour/0400~0499/0451.Sort-Characters-By-Frequency/index.html +++ b/website/public/en/ChapterFour/0400~0499/0451.Sort-Characters-By-Frequency/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0453.Minimum-Moves-to-Equal-Array-Elements/index.html b/website/public/en/ChapterFour/0400~0499/0453.Minimum-Moves-to-Equal-Array-Elements/index.html index 852781117..1119b48e7 100644 --- a/website/public/en/ChapterFour/0400~0499/0453.Minimum-Moves-to-Equal-Array-Elements/index.html +++ b/website/public/en/ChapterFour/0400~0499/0453.Minimum-Moves-to-Equal-Array-Elements/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0454.4Sum-II/index.html b/website/public/en/ChapterFour/0400~0499/0454.4Sum-II/index.html index 8b2e41270..4a3619e89 100644 --- a/website/public/en/ChapterFour/0400~0499/0454.4Sum-II/index.html +++ b/website/public/en/ChapterFour/0400~0499/0454.4Sum-II/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0455.Assign-Cookies/index.html b/website/public/en/ChapterFour/0400~0499/0455.Assign-Cookies/index.html index 6323962ac..fb0175b8c 100644 --- a/website/public/en/ChapterFour/0400~0499/0455.Assign-Cookies/index.html +++ b/website/public/en/ChapterFour/0400~0499/0455.Assign-Cookies/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0456.132-Pattern/index.html b/website/public/en/ChapterFour/0400~0499/0456.132-Pattern/index.html index a1125aff4..fea1eee24 100644 --- a/website/public/en/ChapterFour/0400~0499/0456.132-Pattern/index.html +++ b/website/public/en/ChapterFour/0400~0499/0456.132-Pattern/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0457.Circular-Array-Loop/index.html b/website/public/en/ChapterFour/0400~0499/0457.Circular-Array-Loop/index.html index 101167837..a488ee07d 100644 --- a/website/public/en/ChapterFour/0400~0499/0457.Circular-Array-Loop/index.html +++ b/website/public/en/ChapterFour/0400~0499/0457.Circular-Array-Loop/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0458.Poor-Pigs/index.html b/website/public/en/ChapterFour/0400~0499/0458.Poor-Pigs/index.html index 6bbf322ad..f939d69a2 100644 --- a/website/public/en/ChapterFour/0400~0499/0458.Poor-Pigs/index.html +++ b/website/public/en/ChapterFour/0400~0499/0458.Poor-Pigs/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0460.LFU-Cache/index.html b/website/public/en/ChapterFour/0400~0499/0460.LFU-Cache/index.html index 8ccb1b6dd..54953ea30 100644 --- a/website/public/en/ChapterFour/0400~0499/0460.LFU-Cache/index.html +++ b/website/public/en/ChapterFour/0400~0499/0460.LFU-Cache/index.html @@ -12437,7 +12437,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0461.Hamming-Distance/index.html b/website/public/en/ChapterFour/0400~0499/0461.Hamming-Distance/index.html index 273985173..01eb5e7e2 100644 --- a/website/public/en/ChapterFour/0400~0499/0461.Hamming-Distance/index.html +++ b/website/public/en/ChapterFour/0400~0499/0461.Hamming-Distance/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0462.Minimum-Moves-to-Equal-Array-Elements-II/index.html b/website/public/en/ChapterFour/0400~0499/0462.Minimum-Moves-to-Equal-Array-Elements-II/index.html index 30ee70956..034c0b7e3 100644 --- a/website/public/en/ChapterFour/0400~0499/0462.Minimum-Moves-to-Equal-Array-Elements-II/index.html +++ b/website/public/en/ChapterFour/0400~0499/0462.Minimum-Moves-to-Equal-Array-Elements-II/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0463.Island-Perimeter/index.html b/website/public/en/ChapterFour/0400~0499/0463.Island-Perimeter/index.html index 4df0ad7e6..af5e56954 100644 --- a/website/public/en/ChapterFour/0400~0499/0463.Island-Perimeter/index.html +++ b/website/public/en/ChapterFour/0400~0499/0463.Island-Perimeter/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0470.Implement-Rand10-Using-Rand7/index.html b/website/public/en/ChapterFour/0400~0499/0470.Implement-Rand10-Using-Rand7/index.html index cc6d9db20..ac1b0b79c 100644 --- a/website/public/en/ChapterFour/0400~0499/0470.Implement-Rand10-Using-Rand7/index.html +++ b/website/public/en/ChapterFour/0400~0499/0470.Implement-Rand10-Using-Rand7/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0473.Matchsticks-to-Square/index.html b/website/public/en/ChapterFour/0400~0499/0473.Matchsticks-to-Square/index.html index c58aa10ab..47991f424 100644 --- a/website/public/en/ChapterFour/0400~0499/0473.Matchsticks-to-Square/index.html +++ b/website/public/en/ChapterFour/0400~0499/0473.Matchsticks-to-Square/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0474.Ones-and-Zeroes/index.html b/website/public/en/ChapterFour/0400~0499/0474.Ones-and-Zeroes/index.html index 13bd5a54f..fc3ae1719 100644 --- a/website/public/en/ChapterFour/0400~0499/0474.Ones-and-Zeroes/index.html +++ b/website/public/en/ChapterFour/0400~0499/0474.Ones-and-Zeroes/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0475.Heaters/index.html b/website/public/en/ChapterFour/0400~0499/0475.Heaters/index.html index 27e2f9d61..cd64902f4 100644 --- a/website/public/en/ChapterFour/0400~0499/0475.Heaters/index.html +++ b/website/public/en/ChapterFour/0400~0499/0475.Heaters/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0476.Number-Complement/index.html b/website/public/en/ChapterFour/0400~0499/0476.Number-Complement/index.html index d57ea8f1e..76d72e5d8 100644 --- a/website/public/en/ChapterFour/0400~0499/0476.Number-Complement/index.html +++ b/website/public/en/ChapterFour/0400~0499/0476.Number-Complement/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0477.Total-Hamming-Distance/index.html b/website/public/en/ChapterFour/0400~0499/0477.Total-Hamming-Distance/index.html index ca2ab1a65..16a0d5245 100644 --- a/website/public/en/ChapterFour/0400~0499/0477.Total-Hamming-Distance/index.html +++ b/website/public/en/ChapterFour/0400~0499/0477.Total-Hamming-Distance/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0478.Generate-Random-Point-in-a-Circle/index.html b/website/public/en/ChapterFour/0400~0499/0478.Generate-Random-Point-in-a-Circle/index.html index 428c07326..c6d81347b 100644 --- a/website/public/en/ChapterFour/0400~0499/0478.Generate-Random-Point-in-a-Circle/index.html +++ b/website/public/en/ChapterFour/0400~0499/0478.Generate-Random-Point-in-a-Circle/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0480.Sliding-Window-Median/index.html b/website/public/en/ChapterFour/0400~0499/0480.Sliding-Window-Median/index.html index 6e91ea7cd..d931cb724 100644 --- a/website/public/en/ChapterFour/0400~0499/0480.Sliding-Window-Median/index.html +++ b/website/public/en/ChapterFour/0400~0499/0480.Sliding-Window-Median/index.html @@ -12563,7 +12563,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0483.Smallest-Good-Base/index.html b/website/public/en/ChapterFour/0400~0499/0483.Smallest-Good-Base/index.html index 16dabba50..3c448496f 100644 --- a/website/public/en/ChapterFour/0400~0499/0483.Smallest-Good-Base/index.html +++ b/website/public/en/ChapterFour/0400~0499/0483.Smallest-Good-Base/index.html @@ -12422,7 +12422,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0485.Max-Consecutive-Ones/index.html b/website/public/en/ChapterFour/0400~0499/0485.Max-Consecutive-Ones/index.html index d7fccd705..026188813 100644 --- a/website/public/en/ChapterFour/0400~0499/0485.Max-Consecutive-Ones/index.html +++ b/website/public/en/ChapterFour/0400~0499/0485.Max-Consecutive-Ones/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0488.Zuma-Game/index.html b/website/public/en/ChapterFour/0400~0499/0488.Zuma-Game/index.html index c7987a5ca..53a36f2cc 100644 --- a/website/public/en/ChapterFour/0400~0499/0488.Zuma-Game/index.html +++ b/website/public/en/ChapterFour/0400~0499/0488.Zuma-Game/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0491.Non-decreasing-Subsequences/index.html b/website/public/en/ChapterFour/0400~0499/0491.Non-decreasing-Subsequences/index.html index 3cbe6f6dd..fd31b53f5 100644 --- a/website/public/en/ChapterFour/0400~0499/0491.Non-decreasing-Subsequences/index.html +++ b/website/public/en/ChapterFour/0400~0499/0491.Non-decreasing-Subsequences/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0492.Construct-the-Rectangle/index.html b/website/public/en/ChapterFour/0400~0499/0492.Construct-the-Rectangle/index.html index 25ba290ee..f1fd86b93 100644 --- a/website/public/en/ChapterFour/0400~0499/0492.Construct-the-Rectangle/index.html +++ b/website/public/en/ChapterFour/0400~0499/0492.Construct-the-Rectangle/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0493.Reverse-Pairs/index.html b/website/public/en/ChapterFour/0400~0499/0493.Reverse-Pairs/index.html index 1c25a0b2f..282358589 100644 --- a/website/public/en/ChapterFour/0400~0499/0493.Reverse-Pairs/index.html +++ b/website/public/en/ChapterFour/0400~0499/0493.Reverse-Pairs/index.html @@ -12457,7 +12457,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0494.Target-Sum/index.html b/website/public/en/ChapterFour/0400~0499/0494.Target-Sum/index.html index ce7e80ee7..21adcf288 100644 --- a/website/public/en/ChapterFour/0400~0499/0494.Target-Sum/index.html +++ b/website/public/en/ChapterFour/0400~0499/0494.Target-Sum/index.html @@ -12408,7 +12408,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0495.Teemo-Attacking/index.html b/website/public/en/ChapterFour/0400~0499/0495.Teemo-Attacking/index.html index 6761700d6..16fcaeb76 100644 --- a/website/public/en/ChapterFour/0400~0499/0495.Teemo-Attacking/index.html +++ b/website/public/en/ChapterFour/0400~0499/0495.Teemo-Attacking/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0496.Next-Greater-Element-I/index.html b/website/public/en/ChapterFour/0400~0499/0496.Next-Greater-Element-I/index.html index 278ee4c39..195c0528c 100644 --- a/website/public/en/ChapterFour/0400~0499/0496.Next-Greater-Element-I/index.html +++ b/website/public/en/ChapterFour/0400~0499/0496.Next-Greater-Element-I/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0497.Random-Point-in-Non-overlapping-Rectangles/index.html b/website/public/en/ChapterFour/0400~0499/0497.Random-Point-in-Non-overlapping-Rectangles/index.html index 83e725a96..78097a099 100644 --- a/website/public/en/ChapterFour/0400~0499/0497.Random-Point-in-Non-overlapping-Rectangles/index.html +++ b/website/public/en/ChapterFour/0400~0499/0497.Random-Point-in-Non-overlapping-Rectangles/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/0498.Diagonal-Traverse/index.html b/website/public/en/ChapterFour/0400~0499/0498.Diagonal-Traverse/index.html index aed9353f1..8e177721f 100644 --- a/website/public/en/ChapterFour/0400~0499/0498.Diagonal-Traverse/index.html +++ b/website/public/en/ChapterFour/0400~0499/0498.Diagonal-Traverse/index.html @@ -12492,7 +12492,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0400~0499/index.html b/website/public/en/ChapterFour/0400~0499/index.html index b0fd4e1c7..8c5271963 100644 --- a/website/public/en/ChapterFour/0400~0499/index.html +++ b/website/public/en/ChapterFour/0400~0499/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0500.Keyboard-Row/index.html b/website/public/en/ChapterFour/0500~0599/0500.Keyboard-Row/index.html index 71ccc861a..07140fdd8 100644 --- a/website/public/en/ChapterFour/0500~0599/0500.Keyboard-Row/index.html +++ b/website/public/en/ChapterFour/0500~0599/0500.Keyboard-Row/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0503.Next-Greater-Element-II/index.html b/website/public/en/ChapterFour/0500~0599/0503.Next-Greater-Element-II/index.html index 862ac81b1..d51428e65 100644 --- a/website/public/en/ChapterFour/0500~0599/0503.Next-Greater-Element-II/index.html +++ b/website/public/en/ChapterFour/0500~0599/0503.Next-Greater-Element-II/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0504.Base-7/index.html b/website/public/en/ChapterFour/0500~0599/0504.Base-7/index.html index f09bc45d8..c149743a4 100644 --- a/website/public/en/ChapterFour/0500~0599/0504.Base-7/index.html +++ b/website/public/en/ChapterFour/0500~0599/0504.Base-7/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0506.Relative-Ranks/index.html b/website/public/en/ChapterFour/0500~0599/0506.Relative-Ranks/index.html index 05e0ea7ad..80c8d7464 100644 --- a/website/public/en/ChapterFour/0500~0599/0506.Relative-Ranks/index.html +++ b/website/public/en/ChapterFour/0500~0599/0506.Relative-Ranks/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0507.Perfect-Number/index.html b/website/public/en/ChapterFour/0500~0599/0507.Perfect-Number/index.html index 22dd83543..f69e3335b 100644 --- a/website/public/en/ChapterFour/0500~0599/0507.Perfect-Number/index.html +++ b/website/public/en/ChapterFour/0500~0599/0507.Perfect-Number/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0508.Most-Frequent-Subtree-Sum/index.html b/website/public/en/ChapterFour/0500~0599/0508.Most-Frequent-Subtree-Sum/index.html index ebd4c0811..1eb3b2393 100644 --- a/website/public/en/ChapterFour/0500~0599/0508.Most-Frequent-Subtree-Sum/index.html +++ b/website/public/en/ChapterFour/0500~0599/0508.Most-Frequent-Subtree-Sum/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0509.Fibonacci-Number/index.html b/website/public/en/ChapterFour/0500~0599/0509.Fibonacci-Number/index.html index d865600bc..9bf9475f2 100644 --- a/website/public/en/ChapterFour/0500~0599/0509.Fibonacci-Number/index.html +++ b/website/public/en/ChapterFour/0500~0599/0509.Fibonacci-Number/index.html @@ -12480,7 +12480,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0513.Find-Bottom-Left-Tree-Value/index.html b/website/public/en/ChapterFour/0500~0599/0513.Find-Bottom-Left-Tree-Value/index.html index ce6223c5f..e0f94c67d 100644 --- a/website/public/en/ChapterFour/0500~0599/0513.Find-Bottom-Left-Tree-Value/index.html +++ b/website/public/en/ChapterFour/0500~0599/0513.Find-Bottom-Left-Tree-Value/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0515.Find-Largest-Value-in-Each-Tree-Row/index.html b/website/public/en/ChapterFour/0500~0599/0515.Find-Largest-Value-in-Each-Tree-Row/index.html index 894787afe..1ed760968 100644 --- a/website/public/en/ChapterFour/0500~0599/0515.Find-Largest-Value-in-Each-Tree-Row/index.html +++ b/website/public/en/ChapterFour/0500~0599/0515.Find-Largest-Value-in-Each-Tree-Row/index.html @@ -12413,7 +12413,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0518.Coin-Change-II/index.html b/website/public/en/ChapterFour/0500~0599/0518.Coin-Change-II/index.html index e8adcd339..ccd419b4a 100644 --- a/website/public/en/ChapterFour/0500~0599/0518.Coin-Change-II/index.html +++ b/website/public/en/ChapterFour/0500~0599/0518.Coin-Change-II/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0519.Random-Flip-Matrix/index.html b/website/public/en/ChapterFour/0500~0599/0519.Random-Flip-Matrix/index.html index c429a8348..b096cfbb2 100644 --- a/website/public/en/ChapterFour/0500~0599/0519.Random-Flip-Matrix/index.html +++ b/website/public/en/ChapterFour/0500~0599/0519.Random-Flip-Matrix/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0520.Detect-Capital/index.html b/website/public/en/ChapterFour/0500~0599/0520.Detect-Capital/index.html index 6c9759c04..f1b462771 100644 --- a/website/public/en/ChapterFour/0500~0599/0520.Detect-Capital/index.html +++ b/website/public/en/ChapterFour/0500~0599/0520.Detect-Capital/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0523.Continuous-Subarray-Sum/index.html b/website/public/en/ChapterFour/0500~0599/0523.Continuous-Subarray-Sum/index.html index 21f284259..f76bf7933 100644 --- a/website/public/en/ChapterFour/0500~0599/0523.Continuous-Subarray-Sum/index.html +++ b/website/public/en/ChapterFour/0500~0599/0523.Continuous-Subarray-Sum/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0524.Longest-Word-in-Dictionary-through-Deleting/index.html b/website/public/en/ChapterFour/0500~0599/0524.Longest-Word-in-Dictionary-through-Deleting/index.html index f5a2a16e1..66ea692cd 100644 --- a/website/public/en/ChapterFour/0500~0599/0524.Longest-Word-in-Dictionary-through-Deleting/index.html +++ b/website/public/en/ChapterFour/0500~0599/0524.Longest-Word-in-Dictionary-through-Deleting/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0525.Contiguous-Array/index.html b/website/public/en/ChapterFour/0500~0599/0525.Contiguous-Array/index.html index f8e9bb507..d3297e8fe 100644 --- a/website/public/en/ChapterFour/0500~0599/0525.Contiguous-Array/index.html +++ b/website/public/en/ChapterFour/0500~0599/0525.Contiguous-Array/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0526.Beautiful-Arrangement/index.html b/website/public/en/ChapterFour/0500~0599/0526.Beautiful-Arrangement/index.html index 22d36dfe1..f8dd9fd5d 100644 --- a/website/public/en/ChapterFour/0500~0599/0526.Beautiful-Arrangement/index.html +++ b/website/public/en/ChapterFour/0500~0599/0526.Beautiful-Arrangement/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0528.Random-Pick-with-Weight/index.html b/website/public/en/ChapterFour/0500~0599/0528.Random-Pick-with-Weight/index.html index aada1e8c5..eb0b2b4ef 100644 --- a/website/public/en/ChapterFour/0500~0599/0528.Random-Pick-with-Weight/index.html +++ b/website/public/en/ChapterFour/0500~0599/0528.Random-Pick-with-Weight/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0529.Minesweeper/index.html b/website/public/en/ChapterFour/0500~0599/0529.Minesweeper/index.html index 5215294fd..a959f0940 100644 --- a/website/public/en/ChapterFour/0500~0599/0529.Minesweeper/index.html +++ b/website/public/en/ChapterFour/0500~0599/0529.Minesweeper/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0530.Minimum-Absolute-Difference-in-BST/index.html b/website/public/en/ChapterFour/0500~0599/0530.Minimum-Absolute-Difference-in-BST/index.html index 56bdeb1fc..5988796f6 100644 --- a/website/public/en/ChapterFour/0500~0599/0530.Minimum-Absolute-Difference-in-BST/index.html +++ b/website/public/en/ChapterFour/0500~0599/0530.Minimum-Absolute-Difference-in-BST/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0532.K-diff-Pairs-in-an-Array/index.html b/website/public/en/ChapterFour/0500~0599/0532.K-diff-Pairs-in-an-Array/index.html index 322cdd3f5..021ec564f 100644 --- a/website/public/en/ChapterFour/0500~0599/0532.K-diff-Pairs-in-an-Array/index.html +++ b/website/public/en/ChapterFour/0500~0599/0532.K-diff-Pairs-in-an-Array/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0535.Encode-and-Decode-TinyURL/index.html b/website/public/en/ChapterFour/0500~0599/0535.Encode-and-Decode-TinyURL/index.html index e4c298f7c..5037c2039 100644 --- a/website/public/en/ChapterFour/0500~0599/0535.Encode-and-Decode-TinyURL/index.html +++ b/website/public/en/ChapterFour/0500~0599/0535.Encode-and-Decode-TinyURL/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0537.Complex-Number-Multiplication/index.html b/website/public/en/ChapterFour/0500~0599/0537.Complex-Number-Multiplication/index.html index 70b9185e4..63f12369a 100644 --- a/website/public/en/ChapterFour/0500~0599/0537.Complex-Number-Multiplication/index.html +++ b/website/public/en/ChapterFour/0500~0599/0537.Complex-Number-Multiplication/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0538.Convert-BST-to-Greater-Tree/index.html b/website/public/en/ChapterFour/0500~0599/0538.Convert-BST-to-Greater-Tree/index.html index d864dc09c..1f04abb8b 100644 --- a/website/public/en/ChapterFour/0500~0599/0538.Convert-BST-to-Greater-Tree/index.html +++ b/website/public/en/ChapterFour/0500~0599/0538.Convert-BST-to-Greater-Tree/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0540.Single-Element-in-a-Sorted-Array/index.html b/website/public/en/ChapterFour/0500~0599/0540.Single-Element-in-a-Sorted-Array/index.html index ad60b9d54..e7deb10b9 100644 --- a/website/public/en/ChapterFour/0500~0599/0540.Single-Element-in-a-Sorted-Array/index.html +++ b/website/public/en/ChapterFour/0500~0599/0540.Single-Element-in-a-Sorted-Array/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0541.Reverse-String-II/index.html b/website/public/en/ChapterFour/0500~0599/0541.Reverse-String-II/index.html index d6818511a..523228600 100644 --- a/website/public/en/ChapterFour/0500~0599/0541.Reverse-String-II/index.html +++ b/website/public/en/ChapterFour/0500~0599/0541.Reverse-String-II/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0542.01-Matrix/index.html b/website/public/en/ChapterFour/0500~0599/0542.01-Matrix/index.html index 4dd7f8538..cac5c59c6 100644 --- a/website/public/en/ChapterFour/0500~0599/0542.01-Matrix/index.html +++ b/website/public/en/ChapterFour/0500~0599/0542.01-Matrix/index.html @@ -12503,7 +12503,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0543.Diameter-of-Binary-Tree/index.html b/website/public/en/ChapterFour/0500~0599/0543.Diameter-of-Binary-Tree/index.html index daa896ff9..30e489c45 100644 --- a/website/public/en/ChapterFour/0500~0599/0543.Diameter-of-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0500~0599/0543.Diameter-of-Binary-Tree/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0547.Number-of-Provinces/index.html b/website/public/en/ChapterFour/0500~0599/0547.Number-of-Provinces/index.html index b6d7552e1..dce4e452a 100644 --- a/website/public/en/ChapterFour/0500~0599/0547.Number-of-Provinces/index.html +++ b/website/public/en/ChapterFour/0500~0599/0547.Number-of-Provinces/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0551.Student-Attendance-Record-I/index.html b/website/public/en/ChapterFour/0500~0599/0551.Student-Attendance-Record-I/index.html index 8af873924..713432c88 100644 --- a/website/public/en/ChapterFour/0500~0599/0551.Student-Attendance-Record-I/index.html +++ b/website/public/en/ChapterFour/0500~0599/0551.Student-Attendance-Record-I/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0554.Brick-Wall/index.html b/website/public/en/ChapterFour/0500~0599/0554.Brick-Wall/index.html index b40b2f4ad..a9c9ddfe8 100644 --- a/website/public/en/ChapterFour/0500~0599/0554.Brick-Wall/index.html +++ b/website/public/en/ChapterFour/0500~0599/0554.Brick-Wall/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0557.Reverse-Words-in-a-String-III/index.html b/website/public/en/ChapterFour/0500~0599/0557.Reverse-Words-in-a-String-III/index.html index 0013b87af..61b9c90a3 100644 --- a/website/public/en/ChapterFour/0500~0599/0557.Reverse-Words-in-a-String-III/index.html +++ b/website/public/en/ChapterFour/0500~0599/0557.Reverse-Words-in-a-String-III/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0559.Maximum-Depth-of-N-ary-Tree/index.html b/website/public/en/ChapterFour/0500~0599/0559.Maximum-Depth-of-N-ary-Tree/index.html index 9d770f0b5..6f2984c45 100644 --- a/website/public/en/ChapterFour/0500~0599/0559.Maximum-Depth-of-N-ary-Tree/index.html +++ b/website/public/en/ChapterFour/0500~0599/0559.Maximum-Depth-of-N-ary-Tree/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0560.Subarray-Sum-Equals-K/index.html b/website/public/en/ChapterFour/0500~0599/0560.Subarray-Sum-Equals-K/index.html index 49830a143..fad3058e0 100644 --- a/website/public/en/ChapterFour/0500~0599/0560.Subarray-Sum-Equals-K/index.html +++ b/website/public/en/ChapterFour/0500~0599/0560.Subarray-Sum-Equals-K/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0561.Array-Partition/index.html b/website/public/en/ChapterFour/0500~0599/0561.Array-Partition/index.html index 4bf7b7c26..b11acc24f 100644 --- a/website/public/en/ChapterFour/0500~0599/0561.Array-Partition/index.html +++ b/website/public/en/ChapterFour/0500~0599/0561.Array-Partition/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0563.Binary-Tree-Tilt/index.html b/website/public/en/ChapterFour/0500~0599/0563.Binary-Tree-Tilt/index.html index cfd934a45..6622ac7b1 100644 --- a/website/public/en/ChapterFour/0500~0599/0563.Binary-Tree-Tilt/index.html +++ b/website/public/en/ChapterFour/0500~0599/0563.Binary-Tree-Tilt/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0566.Reshape-the-Matrix/index.html b/website/public/en/ChapterFour/0500~0599/0566.Reshape-the-Matrix/index.html index 2af85ce76..81e5ccaab 100644 --- a/website/public/en/ChapterFour/0500~0599/0566.Reshape-the-Matrix/index.html +++ b/website/public/en/ChapterFour/0500~0599/0566.Reshape-the-Matrix/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0567.Permutation-in-String/index.html b/website/public/en/ChapterFour/0500~0599/0567.Permutation-in-String/index.html index f5f5bfbbf..5ea58a9b1 100644 --- a/website/public/en/ChapterFour/0500~0599/0567.Permutation-in-String/index.html +++ b/website/public/en/ChapterFour/0500~0599/0567.Permutation-in-String/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0572.Subtree-of-Another-Tree/index.html b/website/public/en/ChapterFour/0500~0599/0572.Subtree-of-Another-Tree/index.html index b918f50b2..897233394 100644 --- a/website/public/en/ChapterFour/0500~0599/0572.Subtree-of-Another-Tree/index.html +++ b/website/public/en/ChapterFour/0500~0599/0572.Subtree-of-Another-Tree/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0575.Distribute-Candies/index.html b/website/public/en/ChapterFour/0500~0599/0575.Distribute-Candies/index.html index 1f8ef834a..2b0a16071 100644 --- a/website/public/en/ChapterFour/0500~0599/0575.Distribute-Candies/index.html +++ b/website/public/en/ChapterFour/0500~0599/0575.Distribute-Candies/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0576.Out-of-Boundary-Paths/index.html b/website/public/en/ChapterFour/0500~0599/0576.Out-of-Boundary-Paths/index.html index 03983f960..a37e4e60a 100644 --- a/website/public/en/ChapterFour/0500~0599/0576.Out-of-Boundary-Paths/index.html +++ b/website/public/en/ChapterFour/0500~0599/0576.Out-of-Boundary-Paths/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0581.Shortest-Unsorted-Continuous-Subarray/index.html b/website/public/en/ChapterFour/0500~0599/0581.Shortest-Unsorted-Continuous-Subarray/index.html index 02b2fa511..5e9510552 100644 --- a/website/public/en/ChapterFour/0500~0599/0581.Shortest-Unsorted-Continuous-Subarray/index.html +++ b/website/public/en/ChapterFour/0500~0599/0581.Shortest-Unsorted-Continuous-Subarray/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0583.Delete-Operation-for-Two-Strings/index.html b/website/public/en/ChapterFour/0500~0599/0583.Delete-Operation-for-Two-Strings/index.html index c6e271c23..0ea9e7ffa 100644 --- a/website/public/en/ChapterFour/0500~0599/0583.Delete-Operation-for-Two-Strings/index.html +++ b/website/public/en/ChapterFour/0500~0599/0583.Delete-Operation-for-Two-Strings/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0589.N-ary-Tree-Preorder-Traversal/index.html b/website/public/en/ChapterFour/0500~0599/0589.N-ary-Tree-Preorder-Traversal/index.html index 8dd131e72..7d8963e25 100644 --- a/website/public/en/ChapterFour/0500~0599/0589.N-ary-Tree-Preorder-Traversal/index.html +++ b/website/public/en/ChapterFour/0500~0599/0589.N-ary-Tree-Preorder-Traversal/index.html @@ -12389,7 +12389,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0594.Longest-Harmonious-Subsequence/index.html b/website/public/en/ChapterFour/0500~0599/0594.Longest-Harmonious-Subsequence/index.html index 77139460d..9e70a0ed4 100644 --- a/website/public/en/ChapterFour/0500~0599/0594.Longest-Harmonious-Subsequence/index.html +++ b/website/public/en/ChapterFour/0500~0599/0594.Longest-Harmonious-Subsequence/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0598.Range-Addition-II/index.html b/website/public/en/ChapterFour/0500~0599/0598.Range-Addition-II/index.html index 68d8e2cf9..0e35196c4 100644 --- a/website/public/en/ChapterFour/0500~0599/0598.Range-Addition-II/index.html +++ b/website/public/en/ChapterFour/0500~0599/0598.Range-Addition-II/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/0599.Minimum-Index-Sum-of-Two-Lists/index.html b/website/public/en/ChapterFour/0500~0599/0599.Minimum-Index-Sum-of-Two-Lists/index.html index 5855e743a..b4c1e3847 100644 --- a/website/public/en/ChapterFour/0500~0599/0599.Minimum-Index-Sum-of-Two-Lists/index.html +++ b/website/public/en/ChapterFour/0500~0599/0599.Minimum-Index-Sum-of-Two-Lists/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0500~0599/index.html b/website/public/en/ChapterFour/0500~0599/index.html index e41dfc873..2c488d498 100644 --- a/website/public/en/ChapterFour/0500~0599/index.html +++ b/website/public/en/ChapterFour/0500~0599/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0605.Can-Place-Flowers/index.html b/website/public/en/ChapterFour/0600~0699/0605.Can-Place-Flowers/index.html index 2c00ad8b1..f51b56d67 100644 --- a/website/public/en/ChapterFour/0600~0699/0605.Can-Place-Flowers/index.html +++ b/website/public/en/ChapterFour/0600~0699/0605.Can-Place-Flowers/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0609.Find-Duplicate-File-in-System/index.html b/website/public/en/ChapterFour/0600~0699/0609.Find-Duplicate-File-in-System/index.html index d5acdbbd2..7397006a2 100644 --- a/website/public/en/ChapterFour/0600~0699/0609.Find-Duplicate-File-in-System/index.html +++ b/website/public/en/ChapterFour/0600~0699/0609.Find-Duplicate-File-in-System/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0611.Valid-Triangle-Number/index.html b/website/public/en/ChapterFour/0600~0699/0611.Valid-Triangle-Number/index.html index f0b2cbec2..afbcbfbf3 100644 --- a/website/public/en/ChapterFour/0600~0699/0611.Valid-Triangle-Number/index.html +++ b/website/public/en/ChapterFour/0600~0699/0611.Valid-Triangle-Number/index.html @@ -12340,7 +12340,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0617.Merge-Two-Binary-Trees/index.html b/website/public/en/ChapterFour/0600~0699/0617.Merge-Two-Binary-Trees/index.html index 0978d62ad..119d1a0ca 100644 --- a/website/public/en/ChapterFour/0600~0699/0617.Merge-Two-Binary-Trees/index.html +++ b/website/public/en/ChapterFour/0600~0699/0617.Merge-Two-Binary-Trees/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0622.Design-Circular-Queue/index.html b/website/public/en/ChapterFour/0600~0699/0622.Design-Circular-Queue/index.html index 53eef802b..7be8d22e0 100644 --- a/website/public/en/ChapterFour/0600~0699/0622.Design-Circular-Queue/index.html +++ b/website/public/en/ChapterFour/0600~0699/0622.Design-Circular-Queue/index.html @@ -12439,7 +12439,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0623.Add-One-Row-to-Tree/index.html b/website/public/en/ChapterFour/0600~0699/0623.Add-One-Row-to-Tree/index.html index bef52c9ac..4fd46dabe 100644 --- a/website/public/en/ChapterFour/0600~0699/0623.Add-One-Row-to-Tree/index.html +++ b/website/public/en/ChapterFour/0600~0699/0623.Add-One-Row-to-Tree/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0628.Maximum-Product-of-Three-Numbers/index.html b/website/public/en/ChapterFour/0600~0699/0628.Maximum-Product-of-Three-Numbers/index.html index d9def8d2c..dad278c8f 100644 --- a/website/public/en/ChapterFour/0600~0699/0628.Maximum-Product-of-Three-Numbers/index.html +++ b/website/public/en/ChapterFour/0600~0699/0628.Maximum-Product-of-Three-Numbers/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0630.Course-Schedule-III/index.html b/website/public/en/ChapterFour/0600~0699/0630.Course-Schedule-III/index.html index a2d5be810..714e24e40 100644 --- a/website/public/en/ChapterFour/0600~0699/0630.Course-Schedule-III/index.html +++ b/website/public/en/ChapterFour/0600~0699/0630.Course-Schedule-III/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0632.Smallest-Range-Covering-Elements-from-K-Lists/index.html b/website/public/en/ChapterFour/0600~0699/0632.Smallest-Range-Covering-Elements-from-K-Lists/index.html index 916a5c2e8..a58f09475 100644 --- a/website/public/en/ChapterFour/0600~0699/0632.Smallest-Range-Covering-Elements-from-K-Lists/index.html +++ b/website/public/en/ChapterFour/0600~0699/0632.Smallest-Range-Covering-Elements-from-K-Lists/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0633.Sum-of-Square-Numbers/index.html b/website/public/en/ChapterFour/0600~0699/0633.Sum-of-Square-Numbers/index.html index 12ff9b27b..0192aa3d8 100644 --- a/website/public/en/ChapterFour/0600~0699/0633.Sum-of-Square-Numbers/index.html +++ b/website/public/en/ChapterFour/0600~0699/0633.Sum-of-Square-Numbers/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0636.Exclusive-Time-of-Functions/index.html b/website/public/en/ChapterFour/0600~0699/0636.Exclusive-Time-of-Functions/index.html index fdd0bdca4..e9a0fcefd 100644 --- a/website/public/en/ChapterFour/0600~0699/0636.Exclusive-Time-of-Functions/index.html +++ b/website/public/en/ChapterFour/0600~0699/0636.Exclusive-Time-of-Functions/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0637.Average-of-Levels-in-Binary-Tree/index.html b/website/public/en/ChapterFour/0600~0699/0637.Average-of-Levels-in-Binary-Tree/index.html index b74bf41b0..e4515fcf3 100644 --- a/website/public/en/ChapterFour/0600~0699/0637.Average-of-Levels-in-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0600~0699/0637.Average-of-Levels-in-Binary-Tree/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0638.Shopping-Offers/index.html b/website/public/en/ChapterFour/0600~0699/0638.Shopping-Offers/index.html index e2d176b23..0925f62f6 100644 --- a/website/public/en/ChapterFour/0600~0699/0638.Shopping-Offers/index.html +++ b/website/public/en/ChapterFour/0600~0699/0638.Shopping-Offers/index.html @@ -12408,7 +12408,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0643.Maximum-Average-Subarray-I/index.html b/website/public/en/ChapterFour/0600~0699/0643.Maximum-Average-Subarray-I/index.html index ba2ab01ce..24036d9cb 100644 --- a/website/public/en/ChapterFour/0600~0699/0643.Maximum-Average-Subarray-I/index.html +++ b/website/public/en/ChapterFour/0600~0699/0643.Maximum-Average-Subarray-I/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0645.Set-Mismatch/index.html b/website/public/en/ChapterFour/0600~0699/0645.Set-Mismatch/index.html index 45473a47c..7ad568240 100644 --- a/website/public/en/ChapterFour/0600~0699/0645.Set-Mismatch/index.html +++ b/website/public/en/ChapterFour/0600~0699/0645.Set-Mismatch/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0647.Palindromic-Substrings/index.html b/website/public/en/ChapterFour/0600~0699/0647.Palindromic-Substrings/index.html index af8abf104..fc247ab0e 100644 --- a/website/public/en/ChapterFour/0600~0699/0647.Palindromic-Substrings/index.html +++ b/website/public/en/ChapterFour/0600~0699/0647.Palindromic-Substrings/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0648.Replace-Words/index.html b/website/public/en/ChapterFour/0600~0699/0648.Replace-Words/index.html index d58884eee..92df290f3 100644 --- a/website/public/en/ChapterFour/0600~0699/0648.Replace-Words/index.html +++ b/website/public/en/ChapterFour/0600~0699/0648.Replace-Words/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0653.Two-Sum-IV-Input-is-a-BST/index.html b/website/public/en/ChapterFour/0600~0699/0653.Two-Sum-IV-Input-is-a-BST/index.html index ff719a727..57e5746c3 100644 --- a/website/public/en/ChapterFour/0600~0699/0653.Two-Sum-IV-Input-is-a-BST/index.html +++ b/website/public/en/ChapterFour/0600~0699/0653.Two-Sum-IV-Input-is-a-BST/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0658.Find-K-Closest-Elements/index.html b/website/public/en/ChapterFour/0600~0699/0658.Find-K-Closest-Elements/index.html index 30dcf1313..ce984072f 100644 --- a/website/public/en/ChapterFour/0600~0699/0658.Find-K-Closest-Elements/index.html +++ b/website/public/en/ChapterFour/0600~0699/0658.Find-K-Closest-Elements/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0661.Image-Smoother/index.html b/website/public/en/ChapterFour/0600~0699/0661.Image-Smoother/index.html index 64e2b0683..ea046673d 100644 --- a/website/public/en/ChapterFour/0600~0699/0661.Image-Smoother/index.html +++ b/website/public/en/ChapterFour/0600~0699/0661.Image-Smoother/index.html @@ -12408,7 +12408,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0662.Maximum-Width-of-Binary-Tree/index.html b/website/public/en/ChapterFour/0600~0699/0662.Maximum-Width-of-Binary-Tree/index.html index 8a69423f5..a5e3452d5 100644 --- a/website/public/en/ChapterFour/0600~0699/0662.Maximum-Width-of-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0600~0699/0662.Maximum-Width-of-Binary-Tree/index.html @@ -12440,7 +12440,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0665.Non-decreasing-Array/index.html b/website/public/en/ChapterFour/0600~0699/0665.Non-decreasing-Array/index.html index 3f0246600..1ba706381 100644 --- a/website/public/en/ChapterFour/0600~0699/0665.Non-decreasing-Array/index.html +++ b/website/public/en/ChapterFour/0600~0699/0665.Non-decreasing-Array/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0667.Beautiful-Arrangement-II/index.html b/website/public/en/ChapterFour/0600~0699/0667.Beautiful-Arrangement-II/index.html index bf6ae1d12..70da03caa 100644 --- a/website/public/en/ChapterFour/0600~0699/0667.Beautiful-Arrangement-II/index.html +++ b/website/public/en/ChapterFour/0600~0699/0667.Beautiful-Arrangement-II/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0668.Kth-Smallest-Number-in-Multiplication-Table/index.html b/website/public/en/ChapterFour/0600~0699/0668.Kth-Smallest-Number-in-Multiplication-Table/index.html index d45771f33..dae691258 100644 --- a/website/public/en/ChapterFour/0600~0699/0668.Kth-Smallest-Number-in-Multiplication-Table/index.html +++ b/website/public/en/ChapterFour/0600~0699/0668.Kth-Smallest-Number-in-Multiplication-Table/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0669.Trim-a-Binary-Search-Tree/index.html b/website/public/en/ChapterFour/0600~0699/0669.Trim-a-Binary-Search-Tree/index.html index 9fb9c0cc6..77462971c 100644 --- a/website/public/en/ChapterFour/0600~0699/0669.Trim-a-Binary-Search-Tree/index.html +++ b/website/public/en/ChapterFour/0600~0699/0669.Trim-a-Binary-Search-Tree/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0674.Longest-Continuous-Increasing-Subsequence/index.html b/website/public/en/ChapterFour/0600~0699/0674.Longest-Continuous-Increasing-Subsequence/index.html index c55933dfd..652c4c127 100644 --- a/website/public/en/ChapterFour/0600~0699/0674.Longest-Continuous-Increasing-Subsequence/index.html +++ b/website/public/en/ChapterFour/0600~0699/0674.Longest-Continuous-Increasing-Subsequence/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0676.Implement-Magic-Dictionary/index.html b/website/public/en/ChapterFour/0600~0699/0676.Implement-Magic-Dictionary/index.html index 8e1f93284..3903856e7 100644 --- a/website/public/en/ChapterFour/0600~0699/0676.Implement-Magic-Dictionary/index.html +++ b/website/public/en/ChapterFour/0600~0699/0676.Implement-Magic-Dictionary/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0677.Map-Sum-Pairs/index.html b/website/public/en/ChapterFour/0600~0699/0677.Map-Sum-Pairs/index.html index 82c44a824..a30c04c05 100644 --- a/website/public/en/ChapterFour/0600~0699/0677.Map-Sum-Pairs/index.html +++ b/website/public/en/ChapterFour/0600~0699/0677.Map-Sum-Pairs/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0682.Baseball-Game/index.html b/website/public/en/ChapterFour/0600~0699/0682.Baseball-Game/index.html index d7e658342..7065392ea 100644 --- a/website/public/en/ChapterFour/0600~0699/0682.Baseball-Game/index.html +++ b/website/public/en/ChapterFour/0600~0699/0682.Baseball-Game/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0684.Redundant-Connection/index.html b/website/public/en/ChapterFour/0600~0699/0684.Redundant-Connection/index.html index 941d31c22..358dd66d8 100644 --- a/website/public/en/ChapterFour/0600~0699/0684.Redundant-Connection/index.html +++ b/website/public/en/ChapterFour/0600~0699/0684.Redundant-Connection/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0685.Redundant-Connection-II/index.html b/website/public/en/ChapterFour/0600~0699/0685.Redundant-Connection-II/index.html index 5a2da33d7..7aa1190a0 100644 --- a/website/public/en/ChapterFour/0600~0699/0685.Redundant-Connection-II/index.html +++ b/website/public/en/ChapterFour/0600~0699/0685.Redundant-Connection-II/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0690.Employee-Importance/index.html b/website/public/en/ChapterFour/0600~0699/0690.Employee-Importance/index.html index 75867cffc..b63af314e 100644 --- a/website/public/en/ChapterFour/0600~0699/0690.Employee-Importance/index.html +++ b/website/public/en/ChapterFour/0600~0699/0690.Employee-Importance/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0692.Top-K-Frequent-Words/index.html b/website/public/en/ChapterFour/0600~0699/0692.Top-K-Frequent-Words/index.html index 6d4b13beb..d6c87e22a 100644 --- a/website/public/en/ChapterFour/0600~0699/0692.Top-K-Frequent-Words/index.html +++ b/website/public/en/ChapterFour/0600~0699/0692.Top-K-Frequent-Words/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0693.Binary-Number-with-Alternating-Bits/index.html b/website/public/en/ChapterFour/0600~0699/0693.Binary-Number-with-Alternating-Bits/index.html index a35c1a80c..f3e5433fb 100644 --- a/website/public/en/ChapterFour/0600~0699/0693.Binary-Number-with-Alternating-Bits/index.html +++ b/website/public/en/ChapterFour/0600~0699/0693.Binary-Number-with-Alternating-Bits/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0695.Max-Area-of-Island/index.html b/website/public/en/ChapterFour/0600~0699/0695.Max-Area-of-Island/index.html index 9475bf27f..60668c987 100644 --- a/website/public/en/ChapterFour/0600~0699/0695.Max-Area-of-Island/index.html +++ b/website/public/en/ChapterFour/0600~0699/0695.Max-Area-of-Island/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0696.Count-Binary-Substrings/index.html b/website/public/en/ChapterFour/0600~0699/0696.Count-Binary-Substrings/index.html index a4bc7e63e..890b06703 100644 --- a/website/public/en/ChapterFour/0600~0699/0696.Count-Binary-Substrings/index.html +++ b/website/public/en/ChapterFour/0600~0699/0696.Count-Binary-Substrings/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0697.Degree-of-an-Array/index.html b/website/public/en/ChapterFour/0600~0699/0697.Degree-of-an-Array/index.html index e9d512658..dd8662309 100644 --- a/website/public/en/ChapterFour/0600~0699/0697.Degree-of-an-Array/index.html +++ b/website/public/en/ChapterFour/0600~0699/0697.Degree-of-an-Array/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/0699.Falling-Squares/index.html b/website/public/en/ChapterFour/0600~0699/0699.Falling-Squares/index.html index a914cb854..c92b18667 100644 --- a/website/public/en/ChapterFour/0600~0699/0699.Falling-Squares/index.html +++ b/website/public/en/ChapterFour/0600~0699/0699.Falling-Squares/index.html @@ -12430,7 +12430,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0600~0699/index.html b/website/public/en/ChapterFour/0600~0699/index.html index fd3c91b4f..bed098768 100644 --- a/website/public/en/ChapterFour/0600~0699/index.html +++ b/website/public/en/ChapterFour/0600~0699/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0700.Search-in-a-Binary-Search-Tree/index.html b/website/public/en/ChapterFour/0700~0799/0700.Search-in-a-Binary-Search-Tree/index.html index 1626433c8..66cf7d1af 100644 --- a/website/public/en/ChapterFour/0700~0799/0700.Search-in-a-Binary-Search-Tree/index.html +++ b/website/public/en/ChapterFour/0700~0799/0700.Search-in-a-Binary-Search-Tree/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0701.Insert-into-a-Binary-Search-Tree/index.html b/website/public/en/ChapterFour/0700~0799/0701.Insert-into-a-Binary-Search-Tree/index.html index 19d1ae8c7..0246a3658 100644 --- a/website/public/en/ChapterFour/0700~0799/0701.Insert-into-a-Binary-Search-Tree/index.html +++ b/website/public/en/ChapterFour/0700~0799/0701.Insert-into-a-Binary-Search-Tree/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0703.Kth-Largest-Element-in-a-Stream/index.html b/website/public/en/ChapterFour/0700~0799/0703.Kth-Largest-Element-in-a-Stream/index.html index 3eb0c8097..29013c311 100644 --- a/website/public/en/ChapterFour/0700~0799/0703.Kth-Largest-Element-in-a-Stream/index.html +++ b/website/public/en/ChapterFour/0700~0799/0703.Kth-Largest-Element-in-a-Stream/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0704.Binary-Search/index.html b/website/public/en/ChapterFour/0700~0799/0704.Binary-Search/index.html index 22d9c36ea..f29d33af8 100644 --- a/website/public/en/ChapterFour/0700~0799/0704.Binary-Search/index.html +++ b/website/public/en/ChapterFour/0700~0799/0704.Binary-Search/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0705.Design-HashSet/index.html b/website/public/en/ChapterFour/0700~0799/0705.Design-HashSet/index.html index f332cc955..ddfb73bf2 100644 --- a/website/public/en/ChapterFour/0700~0799/0705.Design-HashSet/index.html +++ b/website/public/en/ChapterFour/0700~0799/0705.Design-HashSet/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0706.Design-HashMap/index.html b/website/public/en/ChapterFour/0700~0799/0706.Design-HashMap/index.html index 68aa9e31f..9552d3b1c 100644 --- a/website/public/en/ChapterFour/0700~0799/0706.Design-HashMap/index.html +++ b/website/public/en/ChapterFour/0700~0799/0706.Design-HashMap/index.html @@ -12449,7 +12449,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0707.Design-Linked-List/index.html b/website/public/en/ChapterFour/0700~0799/0707.Design-Linked-List/index.html index 46b0a7a3f..b23db614c 100644 --- a/website/public/en/ChapterFour/0700~0799/0707.Design-Linked-List/index.html +++ b/website/public/en/ChapterFour/0700~0799/0707.Design-Linked-List/index.html @@ -12448,7 +12448,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0709.To-Lower-Case/index.html b/website/public/en/ChapterFour/0700~0799/0709.To-Lower-Case/index.html index 9e4b0ecb3..3ec861572 100644 --- a/website/public/en/ChapterFour/0700~0799/0709.To-Lower-Case/index.html +++ b/website/public/en/ChapterFour/0700~0799/0709.To-Lower-Case/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0710.Random-Pick-with-Blacklist/index.html b/website/public/en/ChapterFour/0700~0799/0710.Random-Pick-with-Blacklist/index.html index 096a31197..b04ff1514 100644 --- a/website/public/en/ChapterFour/0700~0799/0710.Random-Pick-with-Blacklist/index.html +++ b/website/public/en/ChapterFour/0700~0799/0710.Random-Pick-with-Blacklist/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0713.Subarray-Product-Less-Than-K/index.html b/website/public/en/ChapterFour/0700~0799/0713.Subarray-Product-Less-Than-K/index.html index 8994aacc4..174cc6390 100644 --- a/website/public/en/ChapterFour/0700~0799/0713.Subarray-Product-Less-Than-K/index.html +++ b/website/public/en/ChapterFour/0700~0799/0713.Subarray-Product-Less-Than-K/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0714.Best-Time-to-Buy-and-Sell-Stock-with-Transaction-Fee/index.html b/website/public/en/ChapterFour/0700~0799/0714.Best-Time-to-Buy-and-Sell-Stock-with-Transaction-Fee/index.html index d6e331f3c..65d8e7739 100644 --- a/website/public/en/ChapterFour/0700~0799/0714.Best-Time-to-Buy-and-Sell-Stock-with-Transaction-Fee/index.html +++ b/website/public/en/ChapterFour/0700~0799/0714.Best-Time-to-Buy-and-Sell-Stock-with-Transaction-Fee/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0715.Range-Module/index.html b/website/public/en/ChapterFour/0700~0799/0715.Range-Module/index.html index 0831b111c..09c0d1239 100644 --- a/website/public/en/ChapterFour/0700~0799/0715.Range-Module/index.html +++ b/website/public/en/ChapterFour/0700~0799/0715.Range-Module/index.html @@ -12566,7 +12566,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0717.1-bit-and-2-bit-Characters/index.html b/website/public/en/ChapterFour/0700~0799/0717.1-bit-and-2-bit-Characters/index.html index d302ca04a..8cc6c322b 100644 --- a/website/public/en/ChapterFour/0700~0799/0717.1-bit-and-2-bit-Characters/index.html +++ b/website/public/en/ChapterFour/0700~0799/0717.1-bit-and-2-bit-Characters/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0718.Maximum-Length-of-Repeated-Subarray/index.html b/website/public/en/ChapterFour/0700~0799/0718.Maximum-Length-of-Repeated-Subarray/index.html index 6421af3eb..ba1b9d539 100644 --- a/website/public/en/ChapterFour/0700~0799/0718.Maximum-Length-of-Repeated-Subarray/index.html +++ b/website/public/en/ChapterFour/0700~0799/0718.Maximum-Length-of-Repeated-Subarray/index.html @@ -12428,7 +12428,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0719.Find-K-th-Smallest-Pair-Distance/index.html b/website/public/en/ChapterFour/0700~0799/0719.Find-K-th-Smallest-Pair-Distance/index.html index 30385b26f..5b163bf29 100644 --- a/website/public/en/ChapterFour/0700~0799/0719.Find-K-th-Smallest-Pair-Distance/index.html +++ b/website/public/en/ChapterFour/0700~0799/0719.Find-K-th-Smallest-Pair-Distance/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0720.Longest-Word-in-Dictionary/index.html b/website/public/en/ChapterFour/0700~0799/0720.Longest-Word-in-Dictionary/index.html index 039d895cb..45074e103 100644 --- a/website/public/en/ChapterFour/0700~0799/0720.Longest-Word-in-Dictionary/index.html +++ b/website/public/en/ChapterFour/0700~0799/0720.Longest-Word-in-Dictionary/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0721.Accounts-Merge/index.html b/website/public/en/ChapterFour/0700~0799/0721.Accounts-Merge/index.html index a5aec184e..50eaa1cac 100644 --- a/website/public/en/ChapterFour/0700~0799/0721.Accounts-Merge/index.html +++ b/website/public/en/ChapterFour/0700~0799/0721.Accounts-Merge/index.html @@ -12439,7 +12439,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0724.Find-Pivot-Index/index.html b/website/public/en/ChapterFour/0700~0799/0724.Find-Pivot-Index/index.html index 1e6e51afb..8f6b2a28f 100644 --- a/website/public/en/ChapterFour/0700~0799/0724.Find-Pivot-Index/index.html +++ b/website/public/en/ChapterFour/0700~0799/0724.Find-Pivot-Index/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0725.Split-Linked-List-in-Parts/index.html b/website/public/en/ChapterFour/0700~0799/0725.Split-Linked-List-in-Parts/index.html index 99c06f6cf..3d603156d 100644 --- a/website/public/en/ChapterFour/0700~0799/0725.Split-Linked-List-in-Parts/index.html +++ b/website/public/en/ChapterFour/0700~0799/0725.Split-Linked-List-in-Parts/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0726.Number-of-Atoms/index.html b/website/public/en/ChapterFour/0700~0799/0726.Number-of-Atoms/index.html index 808e4dbb9..dbff5d95e 100644 --- a/website/public/en/ChapterFour/0700~0799/0726.Number-of-Atoms/index.html +++ b/website/public/en/ChapterFour/0700~0799/0726.Number-of-Atoms/index.html @@ -12474,7 +12474,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0728.Self-Dividing-Numbers/index.html b/website/public/en/ChapterFour/0700~0799/0728.Self-Dividing-Numbers/index.html index b68636cb8..f4b2b80d6 100644 --- a/website/public/en/ChapterFour/0700~0799/0728.Self-Dividing-Numbers/index.html +++ b/website/public/en/ChapterFour/0700~0799/0728.Self-Dividing-Numbers/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0729.My-Calendar-I/index.html b/website/public/en/ChapterFour/0700~0799/0729.My-Calendar-I/index.html index 72da87e7f..8971722eb 100644 --- a/website/public/en/ChapterFour/0700~0799/0729.My-Calendar-I/index.html +++ b/website/public/en/ChapterFour/0700~0799/0729.My-Calendar-I/index.html @@ -12467,7 +12467,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0732.My-Calendar-III/index.html b/website/public/en/ChapterFour/0700~0799/0732.My-Calendar-III/index.html index ef32b3bfc..9e1a290db 100644 --- a/website/public/en/ChapterFour/0700~0799/0732.My-Calendar-III/index.html +++ b/website/public/en/ChapterFour/0700~0799/0732.My-Calendar-III/index.html @@ -12430,7 +12430,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0733.Flood-Fill/index.html b/website/public/en/ChapterFour/0700~0799/0733.Flood-Fill/index.html index a439af257..8df29bda7 100644 --- a/website/public/en/ChapterFour/0700~0799/0733.Flood-Fill/index.html +++ b/website/public/en/ChapterFour/0700~0799/0733.Flood-Fill/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0735.Asteroid-Collision/index.html b/website/public/en/ChapterFour/0700~0799/0735.Asteroid-Collision/index.html index 5533ff47a..8642c4132 100644 --- a/website/public/en/ChapterFour/0700~0799/0735.Asteroid-Collision/index.html +++ b/website/public/en/ChapterFour/0700~0799/0735.Asteroid-Collision/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0739.Daily-Temperatures/index.html b/website/public/en/ChapterFour/0700~0799/0739.Daily-Temperatures/index.html index f5be9cf8a..ec551ac90 100644 --- a/website/public/en/ChapterFour/0700~0799/0739.Daily-Temperatures/index.html +++ b/website/public/en/ChapterFour/0700~0799/0739.Daily-Temperatures/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0744.Find-Smallest-Letter-Greater-Than-Target/index.html b/website/public/en/ChapterFour/0700~0799/0744.Find-Smallest-Letter-Greater-Than-Target/index.html index e5b6eee70..8d052bfd9 100644 --- a/website/public/en/ChapterFour/0700~0799/0744.Find-Smallest-Letter-Greater-Than-Target/index.html +++ b/website/public/en/ChapterFour/0700~0799/0744.Find-Smallest-Letter-Greater-Than-Target/index.html @@ -12389,7 +12389,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0745.Prefix-and-Suffix-Search/index.html b/website/public/en/ChapterFour/0700~0799/0745.Prefix-and-Suffix-Search/index.html index de4f7beb8..f1f80b391 100644 --- a/website/public/en/ChapterFour/0700~0799/0745.Prefix-and-Suffix-Search/index.html +++ b/website/public/en/ChapterFour/0700~0799/0745.Prefix-and-Suffix-Search/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0746.Min-Cost-Climbing-Stairs/index.html b/website/public/en/ChapterFour/0700~0799/0746.Min-Cost-Climbing-Stairs/index.html index 50a421846..5b3b9f2dc 100644 --- a/website/public/en/ChapterFour/0700~0799/0746.Min-Cost-Climbing-Stairs/index.html +++ b/website/public/en/ChapterFour/0700~0799/0746.Min-Cost-Climbing-Stairs/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0747.Largest-Number-At-Least-Twice-of-Others/index.html b/website/public/en/ChapterFour/0700~0799/0747.Largest-Number-At-Least-Twice-of-Others/index.html index e8ede2082..466bf3581 100644 --- a/website/public/en/ChapterFour/0700~0799/0747.Largest-Number-At-Least-Twice-of-Others/index.html +++ b/website/public/en/ChapterFour/0700~0799/0747.Largest-Number-At-Least-Twice-of-Others/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0748.Shortest-Completing-Word/index.html b/website/public/en/ChapterFour/0700~0799/0748.Shortest-Completing-Word/index.html index 0684302b9..107e6c318 100644 --- a/website/public/en/ChapterFour/0700~0799/0748.Shortest-Completing-Word/index.html +++ b/website/public/en/ChapterFour/0700~0799/0748.Shortest-Completing-Word/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0752.Open-the-Lock/index.html b/website/public/en/ChapterFour/0700~0799/0752.Open-the-Lock/index.html index a7a33583f..c2671c149 100644 --- a/website/public/en/ChapterFour/0700~0799/0752.Open-the-Lock/index.html +++ b/website/public/en/ChapterFour/0700~0799/0752.Open-the-Lock/index.html @@ -12412,7 +12412,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0753.Cracking-the-Safe/index.html b/website/public/en/ChapterFour/0700~0799/0753.Cracking-the-Safe/index.html index 186dd202b..f5f10629e 100644 --- a/website/public/en/ChapterFour/0700~0799/0753.Cracking-the-Safe/index.html +++ b/website/public/en/ChapterFour/0700~0799/0753.Cracking-the-Safe/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0756.Pyramid-Transition-Matrix/index.html b/website/public/en/ChapterFour/0700~0799/0756.Pyramid-Transition-Matrix/index.html index 1fdd336a3..1911787ab 100644 --- a/website/public/en/ChapterFour/0700~0799/0756.Pyramid-Transition-Matrix/index.html +++ b/website/public/en/ChapterFour/0700~0799/0756.Pyramid-Transition-Matrix/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0762.Prime-Number-of-Set-Bits-in-Binary-Representation/index.html b/website/public/en/ChapterFour/0700~0799/0762.Prime-Number-of-Set-Bits-in-Binary-Representation/index.html index c5a7cf01a..c45438bad 100644 --- a/website/public/en/ChapterFour/0700~0799/0762.Prime-Number-of-Set-Bits-in-Binary-Representation/index.html +++ b/website/public/en/ChapterFour/0700~0799/0762.Prime-Number-of-Set-Bits-in-Binary-Representation/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0763.Partition-Labels/index.html b/website/public/en/ChapterFour/0700~0799/0763.Partition-Labels/index.html index 8b2c55139..5499950de 100644 --- a/website/public/en/ChapterFour/0700~0799/0763.Partition-Labels/index.html +++ b/website/public/en/ChapterFour/0700~0799/0763.Partition-Labels/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0765.Couples-Holding-Hands/index.html b/website/public/en/ChapterFour/0700~0799/0765.Couples-Holding-Hands/index.html index 49f9a0309..0a4c454ef 100644 --- a/website/public/en/ChapterFour/0700~0799/0765.Couples-Holding-Hands/index.html +++ b/website/public/en/ChapterFour/0700~0799/0765.Couples-Holding-Hands/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0766.Toeplitz-Matrix/index.html b/website/public/en/ChapterFour/0700~0799/0766.Toeplitz-Matrix/index.html index cc0e880d6..395467edb 100644 --- a/website/public/en/ChapterFour/0700~0799/0766.Toeplitz-Matrix/index.html +++ b/website/public/en/ChapterFour/0700~0799/0766.Toeplitz-Matrix/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0767.Reorganize-String/index.html b/website/public/en/ChapterFour/0700~0799/0767.Reorganize-String/index.html index 38d54a5dd..7e5f04a18 100644 --- a/website/public/en/ChapterFour/0700~0799/0767.Reorganize-String/index.html +++ b/website/public/en/ChapterFour/0700~0799/0767.Reorganize-String/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0771.Jewels-and-Stones/index.html b/website/public/en/ChapterFour/0700~0799/0771.Jewels-and-Stones/index.html index b36e9f68f..4b136bd1f 100644 --- a/website/public/en/ChapterFour/0700~0799/0771.Jewels-and-Stones/index.html +++ b/website/public/en/ChapterFour/0700~0799/0771.Jewels-and-Stones/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0775.Global-and-Local-Inversions/index.html b/website/public/en/ChapterFour/0700~0799/0775.Global-and-Local-Inversions/index.html index f0a0385ee..8caaf98a9 100644 --- a/website/public/en/ChapterFour/0700~0799/0775.Global-and-Local-Inversions/index.html +++ b/website/public/en/ChapterFour/0700~0799/0775.Global-and-Local-Inversions/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0778.Swim-in-Rising-Water/index.html b/website/public/en/ChapterFour/0700~0799/0778.Swim-in-Rising-Water/index.html index 8f476d192..a2256fb75 100644 --- a/website/public/en/ChapterFour/0700~0799/0778.Swim-in-Rising-Water/index.html +++ b/website/public/en/ChapterFour/0700~0799/0778.Swim-in-Rising-Water/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0781.Rabbits-in-Forest/index.html b/website/public/en/ChapterFour/0700~0799/0781.Rabbits-in-Forest/index.html index d591861be..7fedf05c6 100644 --- a/website/public/en/ChapterFour/0700~0799/0781.Rabbits-in-Forest/index.html +++ b/website/public/en/ChapterFour/0700~0799/0781.Rabbits-in-Forest/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0783.Minimum-Distance-Between-BST-Nodes/index.html b/website/public/en/ChapterFour/0700~0799/0783.Minimum-Distance-Between-BST-Nodes/index.html index e63d84437..57965d320 100644 --- a/website/public/en/ChapterFour/0700~0799/0783.Minimum-Distance-Between-BST-Nodes/index.html +++ b/website/public/en/ChapterFour/0700~0799/0783.Minimum-Distance-Between-BST-Nodes/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0784.Letter-Case-Permutation/index.html b/website/public/en/ChapterFour/0700~0799/0784.Letter-Case-Permutation/index.html index 46ae68113..9f73246a1 100644 --- a/website/public/en/ChapterFour/0700~0799/0784.Letter-Case-Permutation/index.html +++ b/website/public/en/ChapterFour/0700~0799/0784.Letter-Case-Permutation/index.html @@ -12419,7 +12419,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0785.Is-Graph-Bipartite/index.html b/website/public/en/ChapterFour/0700~0799/0785.Is-Graph-Bipartite/index.html index 6605a6e54..0bba48336 100644 --- a/website/public/en/ChapterFour/0700~0799/0785.Is-Graph-Bipartite/index.html +++ b/website/public/en/ChapterFour/0700~0799/0785.Is-Graph-Bipartite/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0786.K-th-Smallest-Prime-Fraction/index.html b/website/public/en/ChapterFour/0700~0799/0786.K-th-Smallest-Prime-Fraction/index.html index 0c4e49753..24fe2e01e 100644 --- a/website/public/en/ChapterFour/0700~0799/0786.K-th-Smallest-Prime-Fraction/index.html +++ b/website/public/en/ChapterFour/0700~0799/0786.K-th-Smallest-Prime-Fraction/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0791.Custom-Sort-String/index.html b/website/public/en/ChapterFour/0700~0799/0791.Custom-Sort-String/index.html index 20536c75b..532f06139 100644 --- a/website/public/en/ChapterFour/0700~0799/0791.Custom-Sort-String/index.html +++ b/website/public/en/ChapterFour/0700~0799/0791.Custom-Sort-String/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0792.Number-of-Matching-Subsequences/index.html b/website/public/en/ChapterFour/0700~0799/0792.Number-of-Matching-Subsequences/index.html index 31fa08f31..e2041df71 100644 --- a/website/public/en/ChapterFour/0700~0799/0792.Number-of-Matching-Subsequences/index.html +++ b/website/public/en/ChapterFour/0700~0799/0792.Number-of-Matching-Subsequences/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0793.Preimage-Size-of-Factorial-Zeroes-Function/index.html b/website/public/en/ChapterFour/0700~0799/0793.Preimage-Size-of-Factorial-Zeroes-Function/index.html index ee2acc3bd..4e0164e66 100644 --- a/website/public/en/ChapterFour/0700~0799/0793.Preimage-Size-of-Factorial-Zeroes-Function/index.html +++ b/website/public/en/ChapterFour/0700~0799/0793.Preimage-Size-of-Factorial-Zeroes-Function/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0794.Valid-Tic-Tac-Toe-State/index.html b/website/public/en/ChapterFour/0700~0799/0794.Valid-Tic-Tac-Toe-State/index.html index 7baa1641b..26b353483 100644 --- a/website/public/en/ChapterFour/0700~0799/0794.Valid-Tic-Tac-Toe-State/index.html +++ b/website/public/en/ChapterFour/0700~0799/0794.Valid-Tic-Tac-Toe-State/index.html @@ -12416,7 +12416,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/0795.Number-of-Subarrays-with-Bounded-Maximum/index.html b/website/public/en/ChapterFour/0700~0799/0795.Number-of-Subarrays-with-Bounded-Maximum/index.html index b3bd6fd24..8158c5bd1 100644 --- a/website/public/en/ChapterFour/0700~0799/0795.Number-of-Subarrays-with-Bounded-Maximum/index.html +++ b/website/public/en/ChapterFour/0700~0799/0795.Number-of-Subarrays-with-Bounded-Maximum/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0700~0799/index.html b/website/public/en/ChapterFour/0700~0799/index.html index 05d1f1bb2..48fb3a757 100644 --- a/website/public/en/ChapterFour/0700~0799/index.html +++ b/website/public/en/ChapterFour/0700~0799/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0802.Find-Eventual-Safe-States/index.html b/website/public/en/ChapterFour/0800~0899/0802.Find-Eventual-Safe-States/index.html index 707e617d1..b7381722f 100644 --- a/website/public/en/ChapterFour/0800~0899/0802.Find-Eventual-Safe-States/index.html +++ b/website/public/en/ChapterFour/0800~0899/0802.Find-Eventual-Safe-States/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0803.Bricks-Falling-When-Hit/index.html b/website/public/en/ChapterFour/0800~0899/0803.Bricks-Falling-When-Hit/index.html index 0170f968f..efd081802 100644 --- a/website/public/en/ChapterFour/0800~0899/0803.Bricks-Falling-When-Hit/index.html +++ b/website/public/en/ChapterFour/0800~0899/0803.Bricks-Falling-When-Hit/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0807.Max-Increase-to-Keep-City-Skyline/index.html b/website/public/en/ChapterFour/0800~0899/0807.Max-Increase-to-Keep-City-Skyline/index.html index 5d82effb7..14c0ebd4b 100644 --- a/website/public/en/ChapterFour/0800~0899/0807.Max-Increase-to-Keep-City-Skyline/index.html +++ b/website/public/en/ChapterFour/0800~0899/0807.Max-Increase-to-Keep-City-Skyline/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0810.Chalkboard-XOR-Game/index.html b/website/public/en/ChapterFour/0800~0899/0810.Chalkboard-XOR-Game/index.html index 972c9a690..fd95bc3d8 100644 --- a/website/public/en/ChapterFour/0800~0899/0810.Chalkboard-XOR-Game/index.html +++ b/website/public/en/ChapterFour/0800~0899/0810.Chalkboard-XOR-Game/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0811.Subdomain-Visit-Count/index.html b/website/public/en/ChapterFour/0800~0899/0811.Subdomain-Visit-Count/index.html index 1482479eb..2bf1815c1 100644 --- a/website/public/en/ChapterFour/0800~0899/0811.Subdomain-Visit-Count/index.html +++ b/website/public/en/ChapterFour/0800~0899/0811.Subdomain-Visit-Count/index.html @@ -12432,7 +12432,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0812.Largest-Triangle-Area/index.html b/website/public/en/ChapterFour/0800~0899/0812.Largest-Triangle-Area/index.html index 05f63f68a..eba61db90 100644 --- a/website/public/en/ChapterFour/0800~0899/0812.Largest-Triangle-Area/index.html +++ b/website/public/en/ChapterFour/0800~0899/0812.Largest-Triangle-Area/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0815.Bus-Routes/index.html b/website/public/en/ChapterFour/0800~0899/0815.Bus-Routes/index.html index d1ed0127b..2b37cd6a9 100644 --- a/website/public/en/ChapterFour/0800~0899/0815.Bus-Routes/index.html +++ b/website/public/en/ChapterFour/0800~0899/0815.Bus-Routes/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0816.Ambiguous-Coordinates/index.html b/website/public/en/ChapterFour/0800~0899/0816.Ambiguous-Coordinates/index.html index 6d82630f9..23a6da510 100644 --- a/website/public/en/ChapterFour/0800~0899/0816.Ambiguous-Coordinates/index.html +++ b/website/public/en/ChapterFour/0800~0899/0816.Ambiguous-Coordinates/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0817.Linked-List-Components/index.html b/website/public/en/ChapterFour/0800~0899/0817.Linked-List-Components/index.html index 18f7a5e7d..fea21d7b8 100644 --- a/website/public/en/ChapterFour/0800~0899/0817.Linked-List-Components/index.html +++ b/website/public/en/ChapterFour/0800~0899/0817.Linked-List-Components/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0819.Most-Common-Word/index.html b/website/public/en/ChapterFour/0800~0899/0819.Most-Common-Word/index.html index 7fd16ca21..0a9739630 100644 --- a/website/public/en/ChapterFour/0800~0899/0819.Most-Common-Word/index.html +++ b/website/public/en/ChapterFour/0800~0899/0819.Most-Common-Word/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0820.Short-Encoding-of-Words/index.html b/website/public/en/ChapterFour/0800~0899/0820.Short-Encoding-of-Words/index.html index a05f42d1e..b40c79690 100644 --- a/website/public/en/ChapterFour/0800~0899/0820.Short-Encoding-of-Words/index.html +++ b/website/public/en/ChapterFour/0800~0899/0820.Short-Encoding-of-Words/index.html @@ -12435,7 +12435,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0821.Shortest-Distance-to-a-Character/index.html b/website/public/en/ChapterFour/0800~0899/0821.Shortest-Distance-to-a-Character/index.html index c1c85f9ed..0377399a5 100644 --- a/website/public/en/ChapterFour/0800~0899/0821.Shortest-Distance-to-a-Character/index.html +++ b/website/public/en/ChapterFour/0800~0899/0821.Shortest-Distance-to-a-Character/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0823.Binary-Trees-With-Factors/index.html b/website/public/en/ChapterFour/0800~0899/0823.Binary-Trees-With-Factors/index.html index f7cbd637c..c0cca19d6 100644 --- a/website/public/en/ChapterFour/0800~0899/0823.Binary-Trees-With-Factors/index.html +++ b/website/public/en/ChapterFour/0800~0899/0823.Binary-Trees-With-Factors/index.html @@ -12420,7 +12420,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0825.Friends-Of-Appropriate-Ages/index.html b/website/public/en/ChapterFour/0800~0899/0825.Friends-Of-Appropriate-Ages/index.html index b456529de..26623ecc4 100644 --- a/website/public/en/ChapterFour/0800~0899/0825.Friends-Of-Appropriate-Ages/index.html +++ b/website/public/en/ChapterFour/0800~0899/0825.Friends-Of-Appropriate-Ages/index.html @@ -12427,7 +12427,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0826.Most-Profit-Assigning-Work/index.html b/website/public/en/ChapterFour/0800~0899/0826.Most-Profit-Assigning-Work/index.html index 9bd55dc35..73e18c8d0 100644 --- a/website/public/en/ChapterFour/0800~0899/0826.Most-Profit-Assigning-Work/index.html +++ b/website/public/en/ChapterFour/0800~0899/0826.Most-Profit-Assigning-Work/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0828.Count-Unique-Characters-of-All-Substrings-of-a-Given-String/index.html b/website/public/en/ChapterFour/0800~0899/0828.Count-Unique-Characters-of-All-Substrings-of-a-Given-String/index.html index 0d2eaac49..b11b487cd 100644 --- a/website/public/en/ChapterFour/0800~0899/0828.Count-Unique-Characters-of-All-Substrings-of-a-Given-String/index.html +++ b/website/public/en/ChapterFour/0800~0899/0828.Count-Unique-Characters-of-All-Substrings-of-a-Given-String/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0830.Positions-of-Large-Groups/index.html b/website/public/en/ChapterFour/0800~0899/0830.Positions-of-Large-Groups/index.html index 5e660bfad..586f2646d 100644 --- a/website/public/en/ChapterFour/0800~0899/0830.Positions-of-Large-Groups/index.html +++ b/website/public/en/ChapterFour/0800~0899/0830.Positions-of-Large-Groups/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0832.Flipping-an-Image/index.html b/website/public/en/ChapterFour/0800~0899/0832.Flipping-an-Image/index.html index 1fb6c4b1b..38d9b8f19 100644 --- a/website/public/en/ChapterFour/0800~0899/0832.Flipping-an-Image/index.html +++ b/website/public/en/ChapterFour/0800~0899/0832.Flipping-an-Image/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0834.Sum-of-Distances-in-Tree/index.html b/website/public/en/ChapterFour/0800~0899/0834.Sum-of-Distances-in-Tree/index.html index c34f808ac..aa59d90b4 100644 --- a/website/public/en/ChapterFour/0800~0899/0834.Sum-of-Distances-in-Tree/index.html +++ b/website/public/en/ChapterFour/0800~0899/0834.Sum-of-Distances-in-Tree/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0836.Rectangle-Overlap/index.html b/website/public/en/ChapterFour/0800~0899/0836.Rectangle-Overlap/index.html index aa8828bc6..ccc6f2171 100644 --- a/website/public/en/ChapterFour/0800~0899/0836.Rectangle-Overlap/index.html +++ b/website/public/en/ChapterFour/0800~0899/0836.Rectangle-Overlap/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0838.Push-Dominoes/index.html b/website/public/en/ChapterFour/0800~0899/0838.Push-Dominoes/index.html index f4214816b..b0015ed50 100644 --- a/website/public/en/ChapterFour/0800~0899/0838.Push-Dominoes/index.html +++ b/website/public/en/ChapterFour/0800~0899/0838.Push-Dominoes/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0839.Similar-String-Groups/index.html b/website/public/en/ChapterFour/0800~0899/0839.Similar-String-Groups/index.html index f78c33172..0cd01955e 100644 --- a/website/public/en/ChapterFour/0800~0899/0839.Similar-String-Groups/index.html +++ b/website/public/en/ChapterFour/0800~0899/0839.Similar-String-Groups/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0841.Keys-and-Rooms/index.html b/website/public/en/ChapterFour/0800~0899/0841.Keys-and-Rooms/index.html index f14fad3a2..3981dce43 100644 --- a/website/public/en/ChapterFour/0800~0899/0841.Keys-and-Rooms/index.html +++ b/website/public/en/ChapterFour/0800~0899/0841.Keys-and-Rooms/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0842.Split-Array-into-Fibonacci-Sequence/index.html b/website/public/en/ChapterFour/0800~0899/0842.Split-Array-into-Fibonacci-Sequence/index.html index ddbaa7d35..1b7cf8cb3 100644 --- a/website/public/en/ChapterFour/0800~0899/0842.Split-Array-into-Fibonacci-Sequence/index.html +++ b/website/public/en/ChapterFour/0800~0899/0842.Split-Array-into-Fibonacci-Sequence/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0844.Backspace-String-Compare/index.html b/website/public/en/ChapterFour/0800~0899/0844.Backspace-String-Compare/index.html index ddf283974..a8e0470f3 100644 --- a/website/public/en/ChapterFour/0800~0899/0844.Backspace-String-Compare/index.html +++ b/website/public/en/ChapterFour/0800~0899/0844.Backspace-String-Compare/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0845.Longest-Mountain-in-Array/index.html b/website/public/en/ChapterFour/0800~0899/0845.Longest-Mountain-in-Array/index.html index 9234fc2c2..eb1843c63 100644 --- a/website/public/en/ChapterFour/0800~0899/0845.Longest-Mountain-in-Array/index.html +++ b/website/public/en/ChapterFour/0800~0899/0845.Longest-Mountain-in-Array/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0846.Hand-of-Straights/index.html b/website/public/en/ChapterFour/0800~0899/0846.Hand-of-Straights/index.html index 261150c1a..d0a806752 100644 --- a/website/public/en/ChapterFour/0800~0899/0846.Hand-of-Straights/index.html +++ b/website/public/en/ChapterFour/0800~0899/0846.Hand-of-Straights/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0850.Rectangle-Area-II/index.html b/website/public/en/ChapterFour/0800~0899/0850.Rectangle-Area-II/index.html index d894bd61f..a662e0ddd 100644 --- a/website/public/en/ChapterFour/0800~0899/0850.Rectangle-Area-II/index.html +++ b/website/public/en/ChapterFour/0800~0899/0850.Rectangle-Area-II/index.html @@ -12597,7 +12597,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0851.Loud-and-Rich/index.html b/website/public/en/ChapterFour/0800~0899/0851.Loud-and-Rich/index.html index 4868202e0..f047981c2 100644 --- a/website/public/en/ChapterFour/0800~0899/0851.Loud-and-Rich/index.html +++ b/website/public/en/ChapterFour/0800~0899/0851.Loud-and-Rich/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0852.Peak-Index-in-a-Mountain-Array/index.html b/website/public/en/ChapterFour/0800~0899/0852.Peak-Index-in-a-Mountain-Array/index.html index 1b67edc30..6e0d2d7cd 100644 --- a/website/public/en/ChapterFour/0800~0899/0852.Peak-Index-in-a-Mountain-Array/index.html +++ b/website/public/en/ChapterFour/0800~0899/0852.Peak-Index-in-a-Mountain-Array/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0853.Car-Fleet/index.html b/website/public/en/ChapterFour/0800~0899/0853.Car-Fleet/index.html index 742ad7c13..ed2439d76 100644 --- a/website/public/en/ChapterFour/0800~0899/0853.Car-Fleet/index.html +++ b/website/public/en/ChapterFour/0800~0899/0853.Car-Fleet/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0856.Score-of-Parentheses/index.html b/website/public/en/ChapterFour/0800~0899/0856.Score-of-Parentheses/index.html index 289feba7d..ec6fc9df1 100644 --- a/website/public/en/ChapterFour/0800~0899/0856.Score-of-Parentheses/index.html +++ b/website/public/en/ChapterFour/0800~0899/0856.Score-of-Parentheses/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0859.Buddy-Strings/index.html b/website/public/en/ChapterFour/0800~0899/0859.Buddy-Strings/index.html index 347e03c35..fff6971ca 100644 --- a/website/public/en/ChapterFour/0800~0899/0859.Buddy-Strings/index.html +++ b/website/public/en/ChapterFour/0800~0899/0859.Buddy-Strings/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0862.Shortest-Subarray-with-Sum-at-Least-K/index.html b/website/public/en/ChapterFour/0800~0899/0862.Shortest-Subarray-with-Sum-at-Least-K/index.html index 46719de56..bbafa45c3 100644 --- a/website/public/en/ChapterFour/0800~0899/0862.Shortest-Subarray-with-Sum-at-Least-K/index.html +++ b/website/public/en/ChapterFour/0800~0899/0862.Shortest-Subarray-with-Sum-at-Least-K/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0863.All-Nodes-Distance-K-in-Binary-Tree/index.html b/website/public/en/ChapterFour/0800~0899/0863.All-Nodes-Distance-K-in-Binary-Tree/index.html index bd497fc4c..585acdae2 100644 --- a/website/public/en/ChapterFour/0800~0899/0863.All-Nodes-Distance-K-in-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0800~0899/0863.All-Nodes-Distance-K-in-Binary-Tree/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0864.Shortest-Path-to-Get-All-Keys/index.html b/website/public/en/ChapterFour/0800~0899/0864.Shortest-Path-to-Get-All-Keys/index.html index 29224af89..e7ee476c1 100644 --- a/website/public/en/ChapterFour/0800~0899/0864.Shortest-Path-to-Get-All-Keys/index.html +++ b/website/public/en/ChapterFour/0800~0899/0864.Shortest-Path-to-Get-All-Keys/index.html @@ -12519,7 +12519,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0867.Transpose-Matrix/index.html b/website/public/en/ChapterFour/0800~0899/0867.Transpose-Matrix/index.html index a52460fdc..fcaaa0b4f 100644 --- a/website/public/en/ChapterFour/0800~0899/0867.Transpose-Matrix/index.html +++ b/website/public/en/ChapterFour/0800~0899/0867.Transpose-Matrix/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0869.Reordered-Power-of-2/index.html b/website/public/en/ChapterFour/0800~0899/0869.Reordered-Power-of-2/index.html index a45d16e0d..b300e6975 100644 --- a/website/public/en/ChapterFour/0800~0899/0869.Reordered-Power-of-2/index.html +++ b/website/public/en/ChapterFour/0800~0899/0869.Reordered-Power-of-2/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0870.Advantage-Shuffle/index.html b/website/public/en/ChapterFour/0800~0899/0870.Advantage-Shuffle/index.html index 6b2083b9e..65118b78a 100644 --- a/website/public/en/ChapterFour/0800~0899/0870.Advantage-Shuffle/index.html +++ b/website/public/en/ChapterFour/0800~0899/0870.Advantage-Shuffle/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0872.Leaf-Similar-Trees/index.html b/website/public/en/ChapterFour/0800~0899/0872.Leaf-Similar-Trees/index.html index a4d5f93a7..552b535ba 100644 --- a/website/public/en/ChapterFour/0800~0899/0872.Leaf-Similar-Trees/index.html +++ b/website/public/en/ChapterFour/0800~0899/0872.Leaf-Similar-Trees/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0874.Walking-Robot-Simulation/index.html b/website/public/en/ChapterFour/0800~0899/0874.Walking-Robot-Simulation/index.html index f13a72702..fddfed610 100644 --- a/website/public/en/ChapterFour/0800~0899/0874.Walking-Robot-Simulation/index.html +++ b/website/public/en/ChapterFour/0800~0899/0874.Walking-Robot-Simulation/index.html @@ -12423,7 +12423,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0875.Koko-Eating-Bananas/index.html b/website/public/en/ChapterFour/0800~0899/0875.Koko-Eating-Bananas/index.html index 488b7016a..1278366c7 100644 --- a/website/public/en/ChapterFour/0800~0899/0875.Koko-Eating-Bananas/index.html +++ b/website/public/en/ChapterFour/0800~0899/0875.Koko-Eating-Bananas/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0876.Middle-of-the-Linked-List/index.html b/website/public/en/ChapterFour/0800~0899/0876.Middle-of-the-Linked-List/index.html index 60c10f956..1bd303b28 100644 --- a/website/public/en/ChapterFour/0800~0899/0876.Middle-of-the-Linked-List/index.html +++ b/website/public/en/ChapterFour/0800~0899/0876.Middle-of-the-Linked-List/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0877.Stone-Game/index.html b/website/public/en/ChapterFour/0800~0899/0877.Stone-Game/index.html index 03498366e..71621e98f 100644 --- a/website/public/en/ChapterFour/0800~0899/0877.Stone-Game/index.html +++ b/website/public/en/ChapterFour/0800~0899/0877.Stone-Game/index.html @@ -12346,7 +12346,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0878.Nth-Magical-Number/index.html b/website/public/en/ChapterFour/0800~0899/0878.Nth-Magical-Number/index.html index caa6b69e9..177f5595b 100644 --- a/website/public/en/ChapterFour/0800~0899/0878.Nth-Magical-Number/index.html +++ b/website/public/en/ChapterFour/0800~0899/0878.Nth-Magical-Number/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0880.Decoded-String-at-Index/index.html b/website/public/en/ChapterFour/0800~0899/0880.Decoded-String-at-Index/index.html index d4b141153..a89d185a8 100644 --- a/website/public/en/ChapterFour/0800~0899/0880.Decoded-String-at-Index/index.html +++ b/website/public/en/ChapterFour/0800~0899/0880.Decoded-String-at-Index/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0881.Boats-to-Save-People/index.html b/website/public/en/ChapterFour/0800~0899/0881.Boats-to-Save-People/index.html index 3073ae02d..a1f4dcf59 100644 --- a/website/public/en/ChapterFour/0800~0899/0881.Boats-to-Save-People/index.html +++ b/website/public/en/ChapterFour/0800~0899/0881.Boats-to-Save-People/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0884.Uncommon-Words-from-Two-Sentences/index.html b/website/public/en/ChapterFour/0800~0899/0884.Uncommon-Words-from-Two-Sentences/index.html index 0e2586036..a6ec2b2e1 100644 --- a/website/public/en/ChapterFour/0800~0899/0884.Uncommon-Words-from-Two-Sentences/index.html +++ b/website/public/en/ChapterFour/0800~0899/0884.Uncommon-Words-from-Two-Sentences/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0885.Spiral-Matrix-III/index.html b/website/public/en/ChapterFour/0800~0899/0885.Spiral-Matrix-III/index.html index 6add7bc43..8ae8b9e0c 100644 --- a/website/public/en/ChapterFour/0800~0899/0885.Spiral-Matrix-III/index.html +++ b/website/public/en/ChapterFour/0800~0899/0885.Spiral-Matrix-III/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0887.Super-Egg-Drop/index.html b/website/public/en/ChapterFour/0800~0899/0887.Super-Egg-Drop/index.html index 57cbbbf13..3009547e7 100644 --- a/website/public/en/ChapterFour/0800~0899/0887.Super-Egg-Drop/index.html +++ b/website/public/en/ChapterFour/0800~0899/0887.Super-Egg-Drop/index.html @@ -12459,7 +12459,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0888.Fair-Candy-Swap/index.html b/website/public/en/ChapterFour/0800~0899/0888.Fair-Candy-Swap/index.html index bd6b13670..13ba9cbad 100644 --- a/website/public/en/ChapterFour/0800~0899/0888.Fair-Candy-Swap/index.html +++ b/website/public/en/ChapterFour/0800~0899/0888.Fair-Candy-Swap/index.html @@ -12389,7 +12389,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0890.Find-and-Replace-Pattern/index.html b/website/public/en/ChapterFour/0800~0899/0890.Find-and-Replace-Pattern/index.html index 4485623da..910d3b771 100644 --- a/website/public/en/ChapterFour/0800~0899/0890.Find-and-Replace-Pattern/index.html +++ b/website/public/en/ChapterFour/0800~0899/0890.Find-and-Replace-Pattern/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0891.Sum-of-Subsequence-Widths/index.html b/website/public/en/ChapterFour/0800~0899/0891.Sum-of-Subsequence-Widths/index.html index a96fdde58..b8fea6623 100644 --- a/website/public/en/ChapterFour/0800~0899/0891.Sum-of-Subsequence-Widths/index.html +++ b/website/public/en/ChapterFour/0800~0899/0891.Sum-of-Subsequence-Widths/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0892.Surface-Area-of-3D-Shapes/index.html b/website/public/en/ChapterFour/0800~0899/0892.Surface-Area-of-3D-Shapes/index.html index 9dd798c1e..7320a7c55 100644 --- a/website/public/en/ChapterFour/0800~0899/0892.Surface-Area-of-3D-Shapes/index.html +++ b/website/public/en/ChapterFour/0800~0899/0892.Surface-Area-of-3D-Shapes/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0895.Maximum-Frequency-Stack/index.html b/website/public/en/ChapterFour/0800~0899/0895.Maximum-Frequency-Stack/index.html index 88e013332..c7ac9f07a 100644 --- a/website/public/en/ChapterFour/0800~0899/0895.Maximum-Frequency-Stack/index.html +++ b/website/public/en/ChapterFour/0800~0899/0895.Maximum-Frequency-Stack/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0896.Monotonic-Array/index.html b/website/public/en/ChapterFour/0800~0899/0896.Monotonic-Array/index.html index 0c25733c4..71987af15 100644 --- a/website/public/en/ChapterFour/0800~0899/0896.Monotonic-Array/index.html +++ b/website/public/en/ChapterFour/0800~0899/0896.Monotonic-Array/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0897.Increasing-Order-Search-Tree/index.html b/website/public/en/ChapterFour/0800~0899/0897.Increasing-Order-Search-Tree/index.html index f310ca094..c44c62ea7 100644 --- a/website/public/en/ChapterFour/0800~0899/0897.Increasing-Order-Search-Tree/index.html +++ b/website/public/en/ChapterFour/0800~0899/0897.Increasing-Order-Search-Tree/index.html @@ -12420,7 +12420,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/0898.Bitwise-ORs-of-Subarrays/index.html b/website/public/en/ChapterFour/0800~0899/0898.Bitwise-ORs-of-Subarrays/index.html index a7017ca36..bf85c22b6 100644 --- a/website/public/en/ChapterFour/0800~0899/0898.Bitwise-ORs-of-Subarrays/index.html +++ b/website/public/en/ChapterFour/0800~0899/0898.Bitwise-ORs-of-Subarrays/index.html @@ -12427,7 +12427,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0800~0899/index.html b/website/public/en/ChapterFour/0800~0899/index.html index fbfdd7f32..edc72f0fc 100644 --- a/website/public/en/ChapterFour/0800~0899/index.html +++ b/website/public/en/ChapterFour/0800~0899/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0901.Online-Stock-Span/index.html b/website/public/en/ChapterFour/0900~0999/0901.Online-Stock-Span/index.html index 48c4fac22..6f0d2a14d 100644 --- a/website/public/en/ChapterFour/0900~0999/0901.Online-Stock-Span/index.html +++ b/website/public/en/ChapterFour/0900~0999/0901.Online-Stock-Span/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0904.Fruit-Into-Baskets/index.html b/website/public/en/ChapterFour/0900~0999/0904.Fruit-Into-Baskets/index.html index d330473af..4d9800eae 100644 --- a/website/public/en/ChapterFour/0900~0999/0904.Fruit-Into-Baskets/index.html +++ b/website/public/en/ChapterFour/0900~0999/0904.Fruit-Into-Baskets/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0907.Sum-of-Subarray-Minimums/index.html b/website/public/en/ChapterFour/0900~0999/0907.Sum-of-Subarray-Minimums/index.html index bebc63bec..3bba3ec4a 100644 --- a/website/public/en/ChapterFour/0900~0999/0907.Sum-of-Subarray-Minimums/index.html +++ b/website/public/en/ChapterFour/0900~0999/0907.Sum-of-Subarray-Minimums/index.html @@ -12427,7 +12427,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0909.Snakes-and-Ladders/index.html b/website/public/en/ChapterFour/0900~0999/0909.Snakes-and-Ladders/index.html index 5ccbd6a7d..b2056805d 100644 --- a/website/public/en/ChapterFour/0900~0999/0909.Snakes-and-Ladders/index.html +++ b/website/public/en/ChapterFour/0900~0999/0909.Snakes-and-Ladders/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0910.Smallest-Range-II/index.html b/website/public/en/ChapterFour/0900~0999/0910.Smallest-Range-II/index.html index 361846abb..a2dc265cd 100644 --- a/website/public/en/ChapterFour/0900~0999/0910.Smallest-Range-II/index.html +++ b/website/public/en/ChapterFour/0900~0999/0910.Smallest-Range-II/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0911.Online-Election/index.html b/website/public/en/ChapterFour/0900~0999/0911.Online-Election/index.html index 69bfd9787..358f76416 100644 --- a/website/public/en/ChapterFour/0900~0999/0911.Online-Election/index.html +++ b/website/public/en/ChapterFour/0900~0999/0911.Online-Election/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0914.X-of-a-Kind-in-a-Deck-of-Cards/index.html b/website/public/en/ChapterFour/0900~0999/0914.X-of-a-Kind-in-a-Deck-of-Cards/index.html index 0901df374..d4fe3803b 100644 --- a/website/public/en/ChapterFour/0900~0999/0914.X-of-a-Kind-in-a-Deck-of-Cards/index.html +++ b/website/public/en/ChapterFour/0900~0999/0914.X-of-a-Kind-in-a-Deck-of-Cards/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0916.Word-Subsets/index.html b/website/public/en/ChapterFour/0900~0999/0916.Word-Subsets/index.html index bce482eb4..c8238c8a5 100644 --- a/website/public/en/ChapterFour/0900~0999/0916.Word-Subsets/index.html +++ b/website/public/en/ChapterFour/0900~0999/0916.Word-Subsets/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0918.Maximum-Sum-Circular-Subarray/index.html b/website/public/en/ChapterFour/0900~0999/0918.Maximum-Sum-Circular-Subarray/index.html index c1a1de61c..a1b179d1f 100644 --- a/website/public/en/ChapterFour/0900~0999/0918.Maximum-Sum-Circular-Subarray/index.html +++ b/website/public/en/ChapterFour/0900~0999/0918.Maximum-Sum-Circular-Subarray/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0920.Number-of-Music-Playlists/index.html b/website/public/en/ChapterFour/0900~0999/0920.Number-of-Music-Playlists/index.html index d0d63a756..9ab8d059a 100644 --- a/website/public/en/ChapterFour/0900~0999/0920.Number-of-Music-Playlists/index.html +++ b/website/public/en/ChapterFour/0900~0999/0920.Number-of-Music-Playlists/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0921.Minimum-Add-to-Make-Parentheses-Valid/index.html b/website/public/en/ChapterFour/0900~0999/0921.Minimum-Add-to-Make-Parentheses-Valid/index.html index 561956ae5..b73b8f298 100644 --- a/website/public/en/ChapterFour/0900~0999/0921.Minimum-Add-to-Make-Parentheses-Valid/index.html +++ b/website/public/en/ChapterFour/0900~0999/0921.Minimum-Add-to-Make-Parentheses-Valid/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0922.Sort-Array-By-Parity-II/index.html b/website/public/en/ChapterFour/0900~0999/0922.Sort-Array-By-Parity-II/index.html index 04ae2b443..512064ea7 100644 --- a/website/public/en/ChapterFour/0900~0999/0922.Sort-Array-By-Parity-II/index.html +++ b/website/public/en/ChapterFour/0900~0999/0922.Sort-Array-By-Parity-II/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0923.3Sum-With-Multiplicity/index.html b/website/public/en/ChapterFour/0900~0999/0923.3Sum-With-Multiplicity/index.html index 857efdabb..7f2de427b 100644 --- a/website/public/en/ChapterFour/0900~0999/0923.3Sum-With-Multiplicity/index.html +++ b/website/public/en/ChapterFour/0900~0999/0923.3Sum-With-Multiplicity/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0924.Minimize-Malware-Spread/index.html b/website/public/en/ChapterFour/0900~0999/0924.Minimize-Malware-Spread/index.html index ec6ea8afe..6280816d2 100644 --- a/website/public/en/ChapterFour/0900~0999/0924.Minimize-Malware-Spread/index.html +++ b/website/public/en/ChapterFour/0900~0999/0924.Minimize-Malware-Spread/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0925.Long-Pressed-Name/index.html b/website/public/en/ChapterFour/0900~0999/0925.Long-Pressed-Name/index.html index 14393c876..5794a74be 100644 --- a/website/public/en/ChapterFour/0900~0999/0925.Long-Pressed-Name/index.html +++ b/website/public/en/ChapterFour/0900~0999/0925.Long-Pressed-Name/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0927.Three-Equal-Parts/index.html b/website/public/en/ChapterFour/0900~0999/0927.Three-Equal-Parts/index.html index 6dc5af2c7..8e0082ee0 100644 --- a/website/public/en/ChapterFour/0900~0999/0927.Three-Equal-Parts/index.html +++ b/website/public/en/ChapterFour/0900~0999/0927.Three-Equal-Parts/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0928.Minimize-Malware-Spread-II/index.html b/website/public/en/ChapterFour/0900~0999/0928.Minimize-Malware-Spread-II/index.html index 85c4e8ec2..3d2b046e6 100644 --- a/website/public/en/ChapterFour/0900~0999/0928.Minimize-Malware-Spread-II/index.html +++ b/website/public/en/ChapterFour/0900~0999/0928.Minimize-Malware-Spread-II/index.html @@ -12431,7 +12431,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0930.Binary-Subarrays-With-Sum/index.html b/website/public/en/ChapterFour/0900~0999/0930.Binary-Subarrays-With-Sum/index.html index e83ae4c7d..0a08a54f8 100644 --- a/website/public/en/ChapterFour/0900~0999/0930.Binary-Subarrays-With-Sum/index.html +++ b/website/public/en/ChapterFour/0900~0999/0930.Binary-Subarrays-With-Sum/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0933.Number-of-Recent-Calls/index.html b/website/public/en/ChapterFour/0900~0999/0933.Number-of-Recent-Calls/index.html index 99c885063..e5f68f08d 100644 --- a/website/public/en/ChapterFour/0900~0999/0933.Number-of-Recent-Calls/index.html +++ b/website/public/en/ChapterFour/0900~0999/0933.Number-of-Recent-Calls/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0938.Range-Sum-of-BST/index.html b/website/public/en/ChapterFour/0900~0999/0938.Range-Sum-of-BST/index.html index c91f800d3..59050f193 100644 --- a/website/public/en/ChapterFour/0900~0999/0938.Range-Sum-of-BST/index.html +++ b/website/public/en/ChapterFour/0900~0999/0938.Range-Sum-of-BST/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0942.DI-String-Match/index.html b/website/public/en/ChapterFour/0900~0999/0942.DI-String-Match/index.html index a096e27a9..d5e65347d 100644 --- a/website/public/en/ChapterFour/0900~0999/0942.DI-String-Match/index.html +++ b/website/public/en/ChapterFour/0900~0999/0942.DI-String-Match/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0946.Validate-Stack-Sequences/index.html b/website/public/en/ChapterFour/0900~0999/0946.Validate-Stack-Sequences/index.html index 0ddd5fc6e..86b7b2107 100644 --- a/website/public/en/ChapterFour/0900~0999/0946.Validate-Stack-Sequences/index.html +++ b/website/public/en/ChapterFour/0900~0999/0946.Validate-Stack-Sequences/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0947.Most-Stones-Removed-with-Same-Row-or-Column/index.html b/website/public/en/ChapterFour/0900~0999/0947.Most-Stones-Removed-with-Same-Row-or-Column/index.html index 26acc1f17..633612641 100644 --- a/website/public/en/ChapterFour/0900~0999/0947.Most-Stones-Removed-with-Same-Row-or-Column/index.html +++ b/website/public/en/ChapterFour/0900~0999/0947.Most-Stones-Removed-with-Same-Row-or-Column/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0949.Largest-Time-for-Given-Digits/index.html b/website/public/en/ChapterFour/0900~0999/0949.Largest-Time-for-Given-Digits/index.html index d832be020..273474465 100644 --- a/website/public/en/ChapterFour/0900~0999/0949.Largest-Time-for-Given-Digits/index.html +++ b/website/public/en/ChapterFour/0900~0999/0949.Largest-Time-for-Given-Digits/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0952.Largest-Component-Size-by-Common-Factor/index.html b/website/public/en/ChapterFour/0900~0999/0952.Largest-Component-Size-by-Common-Factor/index.html index 42984b10d..49b880a67 100644 --- a/website/public/en/ChapterFour/0900~0999/0952.Largest-Component-Size-by-Common-Factor/index.html +++ b/website/public/en/ChapterFour/0900~0999/0952.Largest-Component-Size-by-Common-Factor/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0953.Verifying-an-Alien-Dictionary/index.html b/website/public/en/ChapterFour/0900~0999/0953.Verifying-an-Alien-Dictionary/index.html index 37c629ec2..a9fe19840 100644 --- a/website/public/en/ChapterFour/0900~0999/0953.Verifying-an-Alien-Dictionary/index.html +++ b/website/public/en/ChapterFour/0900~0999/0953.Verifying-an-Alien-Dictionary/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0958.Check-Completeness-of-a-Binary-Tree/index.html b/website/public/en/ChapterFour/0900~0999/0958.Check-Completeness-of-a-Binary-Tree/index.html index cd167d5fe..ac2a8ccc1 100644 --- a/website/public/en/ChapterFour/0900~0999/0958.Check-Completeness-of-a-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0900~0999/0958.Check-Completeness-of-a-Binary-Tree/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0959.Regions-Cut-By-Slashes/index.html b/website/public/en/ChapterFour/0900~0999/0959.Regions-Cut-By-Slashes/index.html index 50c73c57a..efa103963 100644 --- a/website/public/en/ChapterFour/0900~0999/0959.Regions-Cut-By-Slashes/index.html +++ b/website/public/en/ChapterFour/0900~0999/0959.Regions-Cut-By-Slashes/index.html @@ -12446,7 +12446,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0961.N-Repeated-Element-in-Size-2N-Array/index.html b/website/public/en/ChapterFour/0900~0999/0961.N-Repeated-Element-in-Size-2N-Array/index.html index 6fe7046aa..55d64ebeb 100644 --- a/website/public/en/ChapterFour/0900~0999/0961.N-Repeated-Element-in-Size-2N-Array/index.html +++ b/website/public/en/ChapterFour/0900~0999/0961.N-Repeated-Element-in-Size-2N-Array/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0966.Vowel-Spellchecker/index.html b/website/public/en/ChapterFour/0900~0999/0966.Vowel-Spellchecker/index.html index d1fadb078..07dc8b410 100644 --- a/website/public/en/ChapterFour/0900~0999/0966.Vowel-Spellchecker/index.html +++ b/website/public/en/ChapterFour/0900~0999/0966.Vowel-Spellchecker/index.html @@ -12435,7 +12435,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0968.Binary-Tree-Cameras/index.html b/website/public/en/ChapterFour/0900~0999/0968.Binary-Tree-Cameras/index.html index 948b6a69f..be10307f4 100644 --- a/website/public/en/ChapterFour/0900~0999/0968.Binary-Tree-Cameras/index.html +++ b/website/public/en/ChapterFour/0900~0999/0968.Binary-Tree-Cameras/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0969.Pancake-Sorting/index.html b/website/public/en/ChapterFour/0900~0999/0969.Pancake-Sorting/index.html index e856c3861..138666e38 100644 --- a/website/public/en/ChapterFour/0900~0999/0969.Pancake-Sorting/index.html +++ b/website/public/en/ChapterFour/0900~0999/0969.Pancake-Sorting/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0970.Powerful-Integers/index.html b/website/public/en/ChapterFour/0900~0999/0970.Powerful-Integers/index.html index 1a882a3a5..c08350518 100644 --- a/website/public/en/ChapterFour/0900~0999/0970.Powerful-Integers/index.html +++ b/website/public/en/ChapterFour/0900~0999/0970.Powerful-Integers/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0971.Flip-Binary-Tree-To-Match-Preorder-Traversal/index.html b/website/public/en/ChapterFour/0900~0999/0971.Flip-Binary-Tree-To-Match-Preorder-Traversal/index.html index 18cc9500a..5c39e35fd 100644 --- a/website/public/en/ChapterFour/0900~0999/0971.Flip-Binary-Tree-To-Match-Preorder-Traversal/index.html +++ b/website/public/en/ChapterFour/0900~0999/0971.Flip-Binary-Tree-To-Match-Preorder-Traversal/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0973.K-Closest-Points-to-Origin/index.html b/website/public/en/ChapterFour/0900~0999/0973.K-Closest-Points-to-Origin/index.html index dcdb8706e..4436a7970 100644 --- a/website/public/en/ChapterFour/0900~0999/0973.K-Closest-Points-to-Origin/index.html +++ b/website/public/en/ChapterFour/0900~0999/0973.K-Closest-Points-to-Origin/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0975.Odd-Even-Jump/index.html b/website/public/en/ChapterFour/0900~0999/0975.Odd-Even-Jump/index.html index d1b825b24..a0992b047 100644 --- a/website/public/en/ChapterFour/0900~0999/0975.Odd-Even-Jump/index.html +++ b/website/public/en/ChapterFour/0900~0999/0975.Odd-Even-Jump/index.html @@ -12419,7 +12419,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0976.Largest-Perimeter-Triangle/index.html b/website/public/en/ChapterFour/0900~0999/0976.Largest-Perimeter-Triangle/index.html index 534451d11..396f4251e 100644 --- a/website/public/en/ChapterFour/0900~0999/0976.Largest-Perimeter-Triangle/index.html +++ b/website/public/en/ChapterFour/0900~0999/0976.Largest-Perimeter-Triangle/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0977.Squares-of-a-Sorted-Array/index.html b/website/public/en/ChapterFour/0900~0999/0977.Squares-of-a-Sorted-Array/index.html index bc15827e2..34b53b6c1 100644 --- a/website/public/en/ChapterFour/0900~0999/0977.Squares-of-a-Sorted-Array/index.html +++ b/website/public/en/ChapterFour/0900~0999/0977.Squares-of-a-Sorted-Array/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0978.Longest-Turbulent-Subarray/index.html b/website/public/en/ChapterFour/0900~0999/0978.Longest-Turbulent-Subarray/index.html index 344012f9d..84704a22e 100644 --- a/website/public/en/ChapterFour/0900~0999/0978.Longest-Turbulent-Subarray/index.html +++ b/website/public/en/ChapterFour/0900~0999/0978.Longest-Turbulent-Subarray/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0979.Distribute-Coins-in-Binary-Tree/index.html b/website/public/en/ChapterFour/0900~0999/0979.Distribute-Coins-in-Binary-Tree/index.html index 6d7d2b8c7..55b3eb84e 100644 --- a/website/public/en/ChapterFour/0900~0999/0979.Distribute-Coins-in-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0900~0999/0979.Distribute-Coins-in-Binary-Tree/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0980.Unique-Paths-III/index.html b/website/public/en/ChapterFour/0900~0999/0980.Unique-Paths-III/index.html index a372a43cc..6efbb26fa 100644 --- a/website/public/en/ChapterFour/0900~0999/0980.Unique-Paths-III/index.html +++ b/website/public/en/ChapterFour/0900~0999/0980.Unique-Paths-III/index.html @@ -12423,7 +12423,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0981.Time-Based-Key-Value-Store/index.html b/website/public/en/ChapterFour/0900~0999/0981.Time-Based-Key-Value-Store/index.html index 2b05545e8..7bb64aa2f 100644 --- a/website/public/en/ChapterFour/0900~0999/0981.Time-Based-Key-Value-Store/index.html +++ b/website/public/en/ChapterFour/0900~0999/0981.Time-Based-Key-Value-Store/index.html @@ -12428,7 +12428,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0984.String-Without-AAA-or-BBB/index.html b/website/public/en/ChapterFour/0900~0999/0984.String-Without-AAA-or-BBB/index.html index ad6437027..bf5042bba 100644 --- a/website/public/en/ChapterFour/0900~0999/0984.String-Without-AAA-or-BBB/index.html +++ b/website/public/en/ChapterFour/0900~0999/0984.String-Without-AAA-or-BBB/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0985.Sum-of-Even-Numbers-After-Queries/index.html b/website/public/en/ChapterFour/0900~0999/0985.Sum-of-Even-Numbers-After-Queries/index.html index afc929c45..226155324 100644 --- a/website/public/en/ChapterFour/0900~0999/0985.Sum-of-Even-Numbers-After-Queries/index.html +++ b/website/public/en/ChapterFour/0900~0999/0985.Sum-of-Even-Numbers-After-Queries/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0986.Interval-List-Intersections/index.html b/website/public/en/ChapterFour/0900~0999/0986.Interval-List-Intersections/index.html index 25a2a6bef..f83c0c89a 100644 --- a/website/public/en/ChapterFour/0900~0999/0986.Interval-List-Intersections/index.html +++ b/website/public/en/ChapterFour/0900~0999/0986.Interval-List-Intersections/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0987.Vertical-Order-Traversal-of-a-Binary-Tree/index.html b/website/public/en/ChapterFour/0900~0999/0987.Vertical-Order-Traversal-of-a-Binary-Tree/index.html index ba9ba4c8e..b47198d1b 100644 --- a/website/public/en/ChapterFour/0900~0999/0987.Vertical-Order-Traversal-of-a-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0900~0999/0987.Vertical-Order-Traversal-of-a-Binary-Tree/index.html @@ -12422,7 +12422,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0989.Add-to-Array-Form-of-Integer/index.html b/website/public/en/ChapterFour/0900~0999/0989.Add-to-Array-Form-of-Integer/index.html index 0462ca8fc..1de73243e 100644 --- a/website/public/en/ChapterFour/0900~0999/0989.Add-to-Array-Form-of-Integer/index.html +++ b/website/public/en/ChapterFour/0900~0999/0989.Add-to-Array-Form-of-Integer/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0990.Satisfiability-of-Equality-Equations/index.html b/website/public/en/ChapterFour/0900~0999/0990.Satisfiability-of-Equality-Equations/index.html index 54d7b2271..c2bbec004 100644 --- a/website/public/en/ChapterFour/0900~0999/0990.Satisfiability-of-Equality-Equations/index.html +++ b/website/public/en/ChapterFour/0900~0999/0990.Satisfiability-of-Equality-Equations/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0991.Broken-Calculator/index.html b/website/public/en/ChapterFour/0900~0999/0991.Broken-Calculator/index.html index 9237feaff..454e2ad4e 100644 --- a/website/public/en/ChapterFour/0900~0999/0991.Broken-Calculator/index.html +++ b/website/public/en/ChapterFour/0900~0999/0991.Broken-Calculator/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0992.Subarrays-with-K-Different-Integers/index.html b/website/public/en/ChapterFour/0900~0999/0992.Subarrays-with-K-Different-Integers/index.html index a33a74155..7b7fa7f8b 100644 --- a/website/public/en/ChapterFour/0900~0999/0992.Subarrays-with-K-Different-Integers/index.html +++ b/website/public/en/ChapterFour/0900~0999/0992.Subarrays-with-K-Different-Integers/index.html @@ -12389,7 +12389,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0993.Cousins-in-Binary-Tree/index.html b/website/public/en/ChapterFour/0900~0999/0993.Cousins-in-Binary-Tree/index.html index f736d0803..fcea3b497 100644 --- a/website/public/en/ChapterFour/0900~0999/0993.Cousins-in-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/0900~0999/0993.Cousins-in-Binary-Tree/index.html @@ -12455,7 +12455,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0995.Minimum-Number-of-K-Consecutive-Bit-Flips/index.html b/website/public/en/ChapterFour/0900~0999/0995.Minimum-Number-of-K-Consecutive-Bit-Flips/index.html index 207a3c6d6..2767c4029 100644 --- a/website/public/en/ChapterFour/0900~0999/0995.Minimum-Number-of-K-Consecutive-Bit-Flips/index.html +++ b/website/public/en/ChapterFour/0900~0999/0995.Minimum-Number-of-K-Consecutive-Bit-Flips/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0996.Number-of-Squareful-Arrays/index.html b/website/public/en/ChapterFour/0900~0999/0996.Number-of-Squareful-Arrays/index.html index 1c09f572c..767d91603 100644 --- a/website/public/en/ChapterFour/0900~0999/0996.Number-of-Squareful-Arrays/index.html +++ b/website/public/en/ChapterFour/0900~0999/0996.Number-of-Squareful-Arrays/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0997.Find-the-Town-Judge/index.html b/website/public/en/ChapterFour/0900~0999/0997.Find-the-Town-Judge/index.html index e58b20f8e..bb0a49efb 100644 --- a/website/public/en/ChapterFour/0900~0999/0997.Find-the-Town-Judge/index.html +++ b/website/public/en/ChapterFour/0900~0999/0997.Find-the-Town-Judge/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/0999.Available-Captures-for-Rook/index.html b/website/public/en/ChapterFour/0900~0999/0999.Available-Captures-for-Rook/index.html index 27be3f1cb..3f67042a5 100644 --- a/website/public/en/ChapterFour/0900~0999/0999.Available-Captures-for-Rook/index.html +++ b/website/public/en/ChapterFour/0900~0999/0999.Available-Captures-for-Rook/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/0900~0999/index.html b/website/public/en/ChapterFour/0900~0999/index.html index 267bd5c27..9ab94f383 100644 --- a/website/public/en/ChapterFour/0900~0999/index.html +++ b/website/public/en/ChapterFour/0900~0999/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1002.Find-Common-Characters/index.html b/website/public/en/ChapterFour/1000~1099/1002.Find-Common-Characters/index.html index 5a01e6862..ebabf512b 100644 --- a/website/public/en/ChapterFour/1000~1099/1002.Find-Common-Characters/index.html +++ b/website/public/en/ChapterFour/1000~1099/1002.Find-Common-Characters/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1003.Check-If-Word-Is-Valid-After-Substitutions/index.html b/website/public/en/ChapterFour/1000~1099/1003.Check-If-Word-Is-Valid-After-Substitutions/index.html index 91c14c1d1..9893840e2 100644 --- a/website/public/en/ChapterFour/1000~1099/1003.Check-If-Word-Is-Valid-After-Substitutions/index.html +++ b/website/public/en/ChapterFour/1000~1099/1003.Check-If-Word-Is-Valid-After-Substitutions/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1004.Max-Consecutive-Ones-III/index.html b/website/public/en/ChapterFour/1000~1099/1004.Max-Consecutive-Ones-III/index.html index b66dad734..20e4b83d2 100644 --- a/website/public/en/ChapterFour/1000~1099/1004.Max-Consecutive-Ones-III/index.html +++ b/website/public/en/ChapterFour/1000~1099/1004.Max-Consecutive-Ones-III/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1005.Maximize-Sum-Of-Array-After-K-Negations/index.html b/website/public/en/ChapterFour/1000~1099/1005.Maximize-Sum-Of-Array-After-K-Negations/index.html index 253404464..374b834ca 100644 --- a/website/public/en/ChapterFour/1000~1099/1005.Maximize-Sum-Of-Array-After-K-Negations/index.html +++ b/website/public/en/ChapterFour/1000~1099/1005.Maximize-Sum-Of-Array-After-K-Negations/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1006.Clumsy-Factorial/index.html b/website/public/en/ChapterFour/1000~1099/1006.Clumsy-Factorial/index.html index 63aeb4e35..baeebd225 100644 --- a/website/public/en/ChapterFour/1000~1099/1006.Clumsy-Factorial/index.html +++ b/website/public/en/ChapterFour/1000~1099/1006.Clumsy-Factorial/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1009.Complement-of-Base-10-Integer/index.html b/website/public/en/ChapterFour/1000~1099/1009.Complement-of-Base-10-Integer/index.html index be6b2397c..d7dc91207 100644 --- a/website/public/en/ChapterFour/1000~1099/1009.Complement-of-Base-10-Integer/index.html +++ b/website/public/en/ChapterFour/1000~1099/1009.Complement-of-Base-10-Integer/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1010.Pairs-of-Songs-With-Total-Durations-Divisible-by-60/index.html b/website/public/en/ChapterFour/1000~1099/1010.Pairs-of-Songs-With-Total-Durations-Divisible-by-60/index.html index ecd64854c..df980c6cd 100644 --- a/website/public/en/ChapterFour/1000~1099/1010.Pairs-of-Songs-With-Total-Durations-Divisible-by-60/index.html +++ b/website/public/en/ChapterFour/1000~1099/1010.Pairs-of-Songs-With-Total-Durations-Divisible-by-60/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1011.Capacity-To-Ship-Packages-Within-D-Days/index.html b/website/public/en/ChapterFour/1000~1099/1011.Capacity-To-Ship-Packages-Within-D-Days/index.html index 852e67768..59162866e 100644 --- a/website/public/en/ChapterFour/1000~1099/1011.Capacity-To-Ship-Packages-Within-D-Days/index.html +++ b/website/public/en/ChapterFour/1000~1099/1011.Capacity-To-Ship-Packages-Within-D-Days/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1017.Convert-to-Base-2/index.html b/website/public/en/ChapterFour/1000~1099/1017.Convert-to-Base-2/index.html index 3a11258e1..127c986b6 100644 --- a/website/public/en/ChapterFour/1000~1099/1017.Convert-to-Base-2/index.html +++ b/website/public/en/ChapterFour/1000~1099/1017.Convert-to-Base-2/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1018.Binary-Prefix-Divisible-By-5/index.html b/website/public/en/ChapterFour/1000~1099/1018.Binary-Prefix-Divisible-By-5/index.html index dc5ce20f8..366957803 100644 --- a/website/public/en/ChapterFour/1000~1099/1018.Binary-Prefix-Divisible-By-5/index.html +++ b/website/public/en/ChapterFour/1000~1099/1018.Binary-Prefix-Divisible-By-5/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1019.Next-Greater-Node-In-Linked-List/index.html b/website/public/en/ChapterFour/1000~1099/1019.Next-Greater-Node-In-Linked-List/index.html index dc99bcd48..c98b13939 100644 --- a/website/public/en/ChapterFour/1000~1099/1019.Next-Greater-Node-In-Linked-List/index.html +++ b/website/public/en/ChapterFour/1000~1099/1019.Next-Greater-Node-In-Linked-List/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1020.Number-of-Enclaves/index.html b/website/public/en/ChapterFour/1000~1099/1020.Number-of-Enclaves/index.html index b5eb320be..f15a0c3c0 100644 --- a/website/public/en/ChapterFour/1000~1099/1020.Number-of-Enclaves/index.html +++ b/website/public/en/ChapterFour/1000~1099/1020.Number-of-Enclaves/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1021.Remove-Outermost-Parentheses/index.html b/website/public/en/ChapterFour/1000~1099/1021.Remove-Outermost-Parentheses/index.html index e88ca9973..c4b7d1242 100644 --- a/website/public/en/ChapterFour/1000~1099/1021.Remove-Outermost-Parentheses/index.html +++ b/website/public/en/ChapterFour/1000~1099/1021.Remove-Outermost-Parentheses/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1022.Sum-of-Root-To-Leaf-Binary-Numbers/index.html b/website/public/en/ChapterFour/1000~1099/1022.Sum-of-Root-To-Leaf-Binary-Numbers/index.html index a681c85f6..08500f495 100644 --- a/website/public/en/ChapterFour/1000~1099/1022.Sum-of-Root-To-Leaf-Binary-Numbers/index.html +++ b/website/public/en/ChapterFour/1000~1099/1022.Sum-of-Root-To-Leaf-Binary-Numbers/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1025.Divisor-Game/index.html b/website/public/en/ChapterFour/1000~1099/1025.Divisor-Game/index.html index 96da333fe..128bc96fb 100644 --- a/website/public/en/ChapterFour/1000~1099/1025.Divisor-Game/index.html +++ b/website/public/en/ChapterFour/1000~1099/1025.Divisor-Game/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1026.Maximum-Difference-Between-Node-and-Ancestor/index.html b/website/public/en/ChapterFour/1000~1099/1026.Maximum-Difference-Between-Node-and-Ancestor/index.html index e5549ddbc..80b70f00e 100644 --- a/website/public/en/ChapterFour/1000~1099/1026.Maximum-Difference-Between-Node-and-Ancestor/index.html +++ b/website/public/en/ChapterFour/1000~1099/1026.Maximum-Difference-Between-Node-and-Ancestor/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1028.Recover-a-Tree-From-Preorder-Traversal/index.html b/website/public/en/ChapterFour/1000~1099/1028.Recover-a-Tree-From-Preorder-Traversal/index.html index b32cda196..b54534e22 100644 --- a/website/public/en/ChapterFour/1000~1099/1028.Recover-a-Tree-From-Preorder-Traversal/index.html +++ b/website/public/en/ChapterFour/1000~1099/1028.Recover-a-Tree-From-Preorder-Traversal/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1030.Matrix-Cells-in-Distance-Order/index.html b/website/public/en/ChapterFour/1000~1099/1030.Matrix-Cells-in-Distance-Order/index.html index 0ea1b7a1c..138547262 100644 --- a/website/public/en/ChapterFour/1000~1099/1030.Matrix-Cells-in-Distance-Order/index.html +++ b/website/public/en/ChapterFour/1000~1099/1030.Matrix-Cells-in-Distance-Order/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1034.Coloring-A-Border/index.html b/website/public/en/ChapterFour/1000~1099/1034.Coloring-A-Border/index.html index e6b0505f2..5206390b4 100644 --- a/website/public/en/ChapterFour/1000~1099/1034.Coloring-A-Border/index.html +++ b/website/public/en/ChapterFour/1000~1099/1034.Coloring-A-Border/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1037.Valid-Boomerang/index.html b/website/public/en/ChapterFour/1000~1099/1037.Valid-Boomerang/index.html index 791dee873..15fd7f96a 100644 --- a/website/public/en/ChapterFour/1000~1099/1037.Valid-Boomerang/index.html +++ b/website/public/en/ChapterFour/1000~1099/1037.Valid-Boomerang/index.html @@ -12348,7 +12348,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1038.Binary-Search-Tree-to-Greater-Sum-Tree/index.html b/website/public/en/ChapterFour/1000~1099/1038.Binary-Search-Tree-to-Greater-Sum-Tree/index.html index c358c53ea..faa3d8f76 100644 --- a/website/public/en/ChapterFour/1000~1099/1038.Binary-Search-Tree-to-Greater-Sum-Tree/index.html +++ b/website/public/en/ChapterFour/1000~1099/1038.Binary-Search-Tree-to-Greater-Sum-Tree/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1040.Moving-Stones-Until-Consecutive-II/index.html b/website/public/en/ChapterFour/1000~1099/1040.Moving-Stones-Until-Consecutive-II/index.html index 8339b05ad..0edc220f4 100644 --- a/website/public/en/ChapterFour/1000~1099/1040.Moving-Stones-Until-Consecutive-II/index.html +++ b/website/public/en/ChapterFour/1000~1099/1040.Moving-Stones-Until-Consecutive-II/index.html @@ -12419,7 +12419,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1044.Longest-Duplicate-Substring/index.html b/website/public/en/ChapterFour/1000~1099/1044.Longest-Duplicate-Substring/index.html index 3bed7a777..5c136aa06 100644 --- a/website/public/en/ChapterFour/1000~1099/1044.Longest-Duplicate-Substring/index.html +++ b/website/public/en/ChapterFour/1000~1099/1044.Longest-Duplicate-Substring/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1047.Remove-All-Adjacent-Duplicates-In-String/index.html b/website/public/en/ChapterFour/1000~1099/1047.Remove-All-Adjacent-Duplicates-In-String/index.html index db98d8199..db35e3e5a 100644 --- a/website/public/en/ChapterFour/1000~1099/1047.Remove-All-Adjacent-Duplicates-In-String/index.html +++ b/website/public/en/ChapterFour/1000~1099/1047.Remove-All-Adjacent-Duplicates-In-String/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1048.Longest-String-Chain/index.html b/website/public/en/ChapterFour/1000~1099/1048.Longest-String-Chain/index.html index 59664de3d..af9388405 100644 --- a/website/public/en/ChapterFour/1000~1099/1048.Longest-String-Chain/index.html +++ b/website/public/en/ChapterFour/1000~1099/1048.Longest-String-Chain/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1049.Last-Stone-Weight-II/index.html b/website/public/en/ChapterFour/1000~1099/1049.Last-Stone-Weight-II/index.html index f48add89a..06c9bd511 100644 --- a/website/public/en/ChapterFour/1000~1099/1049.Last-Stone-Weight-II/index.html +++ b/website/public/en/ChapterFour/1000~1099/1049.Last-Stone-Weight-II/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1051.Height-Checker/index.html b/website/public/en/ChapterFour/1000~1099/1051.Height-Checker/index.html index 504b4b071..c2f3246a8 100644 --- a/website/public/en/ChapterFour/1000~1099/1051.Height-Checker/index.html +++ b/website/public/en/ChapterFour/1000~1099/1051.Height-Checker/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1052.Grumpy-Bookstore-Owner/index.html b/website/public/en/ChapterFour/1000~1099/1052.Grumpy-Bookstore-Owner/index.html index 685defab9..4e422b0eb 100644 --- a/website/public/en/ChapterFour/1000~1099/1052.Grumpy-Bookstore-Owner/index.html +++ b/website/public/en/ChapterFour/1000~1099/1052.Grumpy-Bookstore-Owner/index.html @@ -12397,7 +12397,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1054.Distant-Barcodes/index.html b/website/public/en/ChapterFour/1000~1099/1054.Distant-Barcodes/index.html index b52c385b8..c9e4769b4 100644 --- a/website/public/en/ChapterFour/1000~1099/1054.Distant-Barcodes/index.html +++ b/website/public/en/ChapterFour/1000~1099/1054.Distant-Barcodes/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1073.Adding-Two-Negabinary-Numbers/index.html b/website/public/en/ChapterFour/1000~1099/1073.Adding-Two-Negabinary-Numbers/index.html index 2f681b1e0..c904b203b 100644 --- a/website/public/en/ChapterFour/1000~1099/1073.Adding-Two-Negabinary-Numbers/index.html +++ b/website/public/en/ChapterFour/1000~1099/1073.Adding-Two-Negabinary-Numbers/index.html @@ -12437,7 +12437,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1074.Number-of-Submatrices-That-Sum-to-Target/index.html b/website/public/en/ChapterFour/1000~1099/1074.Number-of-Submatrices-That-Sum-to-Target/index.html index 8a77a5d3a..ebf077fb8 100644 --- a/website/public/en/ChapterFour/1000~1099/1074.Number-of-Submatrices-That-Sum-to-Target/index.html +++ b/website/public/en/ChapterFour/1000~1099/1074.Number-of-Submatrices-That-Sum-to-Target/index.html @@ -12452,7 +12452,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1078.Occurrences-After-Bigram/index.html b/website/public/en/ChapterFour/1000~1099/1078.Occurrences-After-Bigram/index.html index 2c5f98cf0..c4bc329fe 100644 --- a/website/public/en/ChapterFour/1000~1099/1078.Occurrences-After-Bigram/index.html +++ b/website/public/en/ChapterFour/1000~1099/1078.Occurrences-After-Bigram/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1079.Letter-Tile-Possibilities/index.html b/website/public/en/ChapterFour/1000~1099/1079.Letter-Tile-Possibilities/index.html index b4744d4e6..b72dae323 100644 --- a/website/public/en/ChapterFour/1000~1099/1079.Letter-Tile-Possibilities/index.html +++ b/website/public/en/ChapterFour/1000~1099/1079.Letter-Tile-Possibilities/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1089.Duplicate-Zeros/index.html b/website/public/en/ChapterFour/1000~1099/1089.Duplicate-Zeros/index.html index 54d90cb0a..db2bdb929 100644 --- a/website/public/en/ChapterFour/1000~1099/1089.Duplicate-Zeros/index.html +++ b/website/public/en/ChapterFour/1000~1099/1089.Duplicate-Zeros/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1091.Shortest-Path-in-Binary-Matrix/index.html b/website/public/en/ChapterFour/1000~1099/1091.Shortest-Path-in-Binary-Matrix/index.html index d539dde29..ab3677a28 100644 --- a/website/public/en/ChapterFour/1000~1099/1091.Shortest-Path-in-Binary-Matrix/index.html +++ b/website/public/en/ChapterFour/1000~1099/1091.Shortest-Path-in-Binary-Matrix/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/1093.Statistics-from-a-Large-Sample/index.html b/website/public/en/ChapterFour/1000~1099/1093.Statistics-from-a-Large-Sample/index.html index 2d1b263de..a563d0a12 100644 --- a/website/public/en/ChapterFour/1000~1099/1093.Statistics-from-a-Large-Sample/index.html +++ b/website/public/en/ChapterFour/1000~1099/1093.Statistics-from-a-Large-Sample/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1000~1099/index.html b/website/public/en/ChapterFour/1000~1099/index.html index 0853161a5..8deadf337 100644 --- a/website/public/en/ChapterFour/1000~1099/index.html +++ b/website/public/en/ChapterFour/1000~1099/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1104.Path-In-Zigzag-Labelled-Binary-Tree/index.html b/website/public/en/ChapterFour/1100~1199/1104.Path-In-Zigzag-Labelled-Binary-Tree/index.html index 54f370f77..ddce6c632 100644 --- a/website/public/en/ChapterFour/1100~1199/1104.Path-In-Zigzag-Labelled-Binary-Tree/index.html +++ b/website/public/en/ChapterFour/1100~1199/1104.Path-In-Zigzag-Labelled-Binary-Tree/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1105.Filling-Bookcase-Shelves/index.html b/website/public/en/ChapterFour/1100~1199/1105.Filling-Bookcase-Shelves/index.html index 7583b686a..0a5608ee8 100644 --- a/website/public/en/ChapterFour/1100~1199/1105.Filling-Bookcase-Shelves/index.html +++ b/website/public/en/ChapterFour/1100~1199/1105.Filling-Bookcase-Shelves/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1108.Defanging-an-IP-Address/index.html b/website/public/en/ChapterFour/1100~1199/1108.Defanging-an-IP-Address/index.html index 9ab970337..f92892fb8 100644 --- a/website/public/en/ChapterFour/1100~1199/1108.Defanging-an-IP-Address/index.html +++ b/website/public/en/ChapterFour/1100~1199/1108.Defanging-an-IP-Address/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1110.Delete-Nodes-And-Return-Forest/index.html b/website/public/en/ChapterFour/1100~1199/1110.Delete-Nodes-And-Return-Forest/index.html index 2dd993edf..67b6e42f2 100644 --- a/website/public/en/ChapterFour/1100~1199/1110.Delete-Nodes-And-Return-Forest/index.html +++ b/website/public/en/ChapterFour/1100~1199/1110.Delete-Nodes-And-Return-Forest/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1111.Maximum-Nesting-Depth-of-Two-Valid-Parentheses-Strings/index.html b/website/public/en/ChapterFour/1100~1199/1111.Maximum-Nesting-Depth-of-Two-Valid-Parentheses-Strings/index.html index 5aef0469b..543fb67b4 100644 --- a/website/public/en/ChapterFour/1100~1199/1111.Maximum-Nesting-Depth-of-Two-Valid-Parentheses-Strings/index.html +++ b/website/public/en/ChapterFour/1100~1199/1111.Maximum-Nesting-Depth-of-Two-Valid-Parentheses-Strings/index.html @@ -12420,7 +12420,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1122.Relative-Sort-Array/index.html b/website/public/en/ChapterFour/1100~1199/1122.Relative-Sort-Array/index.html index 13efc637c..0a2025d22 100644 --- a/website/public/en/ChapterFour/1100~1199/1122.Relative-Sort-Array/index.html +++ b/website/public/en/ChapterFour/1100~1199/1122.Relative-Sort-Array/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1123.Lowest-Common-Ancestor-of-Deepest-Leaves/index.html b/website/public/en/ChapterFour/1100~1199/1123.Lowest-Common-Ancestor-of-Deepest-Leaves/index.html index 0ccc99f88..cb7924e2b 100644 --- a/website/public/en/ChapterFour/1100~1199/1123.Lowest-Common-Ancestor-of-Deepest-Leaves/index.html +++ b/website/public/en/ChapterFour/1100~1199/1123.Lowest-Common-Ancestor-of-Deepest-Leaves/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1128.Number-of-Equivalent-Domino-Pairs/index.html b/website/public/en/ChapterFour/1100~1199/1128.Number-of-Equivalent-Domino-Pairs/index.html index 2a1a72aca..ad5e77b94 100644 --- a/website/public/en/ChapterFour/1100~1199/1128.Number-of-Equivalent-Domino-Pairs/index.html +++ b/website/public/en/ChapterFour/1100~1199/1128.Number-of-Equivalent-Domino-Pairs/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1137.N-th-Tribonacci-Number/index.html b/website/public/en/ChapterFour/1100~1199/1137.N-th-Tribonacci-Number/index.html index c9abcdc27..fcb31598d 100644 --- a/website/public/en/ChapterFour/1100~1199/1137.N-th-Tribonacci-Number/index.html +++ b/website/public/en/ChapterFour/1100~1199/1137.N-th-Tribonacci-Number/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1143.Longest-Common-Subsequence/index.html b/website/public/en/ChapterFour/1100~1199/1143.Longest-Common-Subsequence/index.html index 4e86447c5..3b1fc6f53 100644 --- a/website/public/en/ChapterFour/1100~1199/1143.Longest-Common-Subsequence/index.html +++ b/website/public/en/ChapterFour/1100~1199/1143.Longest-Common-Subsequence/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1145.Binary-Tree-Coloring-Game/index.html b/website/public/en/ChapterFour/1100~1199/1145.Binary-Tree-Coloring-Game/index.html index 19fbdd7b3..82a1da37f 100644 --- a/website/public/en/ChapterFour/1100~1199/1145.Binary-Tree-Coloring-Game/index.html +++ b/website/public/en/ChapterFour/1100~1199/1145.Binary-Tree-Coloring-Game/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1154.Day-of-the-Year/index.html b/website/public/en/ChapterFour/1100~1199/1154.Day-of-the-Year/index.html index c566502b5..fe3326a43 100644 --- a/website/public/en/ChapterFour/1100~1199/1154.Day-of-the-Year/index.html +++ b/website/public/en/ChapterFour/1100~1199/1154.Day-of-the-Year/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1157.Online-Majority-Element-In-Subarray/index.html b/website/public/en/ChapterFour/1100~1199/1157.Online-Majority-Element-In-Subarray/index.html index 065568dd2..d19cf4af8 100644 --- a/website/public/en/ChapterFour/1100~1199/1157.Online-Majority-Element-In-Subarray/index.html +++ b/website/public/en/ChapterFour/1100~1199/1157.Online-Majority-Element-In-Subarray/index.html @@ -12501,7 +12501,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1160.Find-Words-That-Can-Be-Formed-by-Characters/index.html b/website/public/en/ChapterFour/1100~1199/1160.Find-Words-That-Can-Be-Formed-by-Characters/index.html index c93ab1145..79781c89f 100644 --- a/website/public/en/ChapterFour/1100~1199/1160.Find-Words-That-Can-Be-Formed-by-Characters/index.html +++ b/website/public/en/ChapterFour/1100~1199/1160.Find-Words-That-Can-Be-Formed-by-Characters/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1170.Compare-Strings-by-Frequency-of-the-Smallest-Character/index.html b/website/public/en/ChapterFour/1100~1199/1170.Compare-Strings-by-Frequency-of-the-Smallest-Character/index.html index 328e834ca..4385842f1 100644 --- a/website/public/en/ChapterFour/1100~1199/1170.Compare-Strings-by-Frequency-of-the-Smallest-Character/index.html +++ b/website/public/en/ChapterFour/1100~1199/1170.Compare-Strings-by-Frequency-of-the-Smallest-Character/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1171.Remove-Zero-Sum-Consecutive-Nodes-from-Linked-List/index.html b/website/public/en/ChapterFour/1100~1199/1171.Remove-Zero-Sum-Consecutive-Nodes-from-Linked-List/index.html index d0749638c..89a624138 100644 --- a/website/public/en/ChapterFour/1100~1199/1171.Remove-Zero-Sum-Consecutive-Nodes-from-Linked-List/index.html +++ b/website/public/en/ChapterFour/1100~1199/1171.Remove-Zero-Sum-Consecutive-Nodes-from-Linked-List/index.html @@ -12433,7 +12433,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1175.Prime-Arrangements/index.html b/website/public/en/ChapterFour/1100~1199/1175.Prime-Arrangements/index.html index 1871653fc..b0f32d0cd 100644 --- a/website/public/en/ChapterFour/1100~1199/1175.Prime-Arrangements/index.html +++ b/website/public/en/ChapterFour/1100~1199/1175.Prime-Arrangements/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle/index.html b/website/public/en/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle/index.html index 4ccf74b1b..7bc7e2975 100644 --- a/website/public/en/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle/index.html +++ b/website/public/en/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1184.Distance-Between-Bus-Stops/index.html b/website/public/en/ChapterFour/1100~1199/1184.Distance-Between-Bus-Stops/index.html index 02baaec1a..7265dcd9c 100644 --- a/website/public/en/ChapterFour/1100~1199/1184.Distance-Between-Bus-Stops/index.html +++ b/website/public/en/ChapterFour/1100~1199/1184.Distance-Between-Bus-Stops/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1185.Day-of-the-Week/index.html b/website/public/en/ChapterFour/1100~1199/1185.Day-of-the-Week/index.html index dbe183a95..af7cf027b 100644 --- a/website/public/en/ChapterFour/1100~1199/1185.Day-of-the-Week/index.html +++ b/website/public/en/ChapterFour/1100~1199/1185.Day-of-the-Week/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1189.Maximum-Number-of-Balloons/index.html b/website/public/en/ChapterFour/1100~1199/1189.Maximum-Number-of-Balloons/index.html index 17d36a927..8d05e9c03 100644 --- a/website/public/en/ChapterFour/1100~1199/1189.Maximum-Number-of-Balloons/index.html +++ b/website/public/en/ChapterFour/1100~1199/1189.Maximum-Number-of-Balloons/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/1190.Reverse-Substrings-Between-Each-Pair-of-Parentheses/index.html b/website/public/en/ChapterFour/1100~1199/1190.Reverse-Substrings-Between-Each-Pair-of-Parentheses/index.html index 179ff2c55..d7da6e28a 100644 --- a/website/public/en/ChapterFour/1100~1199/1190.Reverse-Substrings-Between-Each-Pair-of-Parentheses/index.html +++ b/website/public/en/ChapterFour/1100~1199/1190.Reverse-Substrings-Between-Each-Pair-of-Parentheses/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1100~1199/index.html b/website/public/en/ChapterFour/1100~1199/index.html index 8fba085c8..22ad8c5c3 100644 --- a/website/public/en/ChapterFour/1100~1199/index.html +++ b/website/public/en/ChapterFour/1100~1199/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1200.Minimum-Absolute-Difference/index.html b/website/public/en/ChapterFour/1200~1299/1200.Minimum-Absolute-Difference/index.html index 9ba9f7dfd..0339ad585 100644 --- a/website/public/en/ChapterFour/1200~1299/1200.Minimum-Absolute-Difference/index.html +++ b/website/public/en/ChapterFour/1200~1299/1200.Minimum-Absolute-Difference/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1201.Ugly-Number-III/index.html b/website/public/en/ChapterFour/1200~1299/1201.Ugly-Number-III/index.html index a6ea96ea2..e1efbd35c 100644 --- a/website/public/en/ChapterFour/1200~1299/1201.Ugly-Number-III/index.html +++ b/website/public/en/ChapterFour/1200~1299/1201.Ugly-Number-III/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1202.Smallest-String-With-Swaps/index.html b/website/public/en/ChapterFour/1200~1299/1202.Smallest-String-With-Swaps/index.html index edaf8030e..e1644112d 100644 --- a/website/public/en/ChapterFour/1200~1299/1202.Smallest-String-With-Swaps/index.html +++ b/website/public/en/ChapterFour/1200~1299/1202.Smallest-String-With-Swaps/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1203.Sort-Items-by-Groups-Respecting-Dependencies/index.html b/website/public/en/ChapterFour/1200~1299/1203.Sort-Items-by-Groups-Respecting-Dependencies/index.html index 0ec139b31..f04375ec7 100644 --- a/website/public/en/ChapterFour/1200~1299/1203.Sort-Items-by-Groups-Respecting-Dependencies/index.html +++ b/website/public/en/ChapterFour/1200~1299/1203.Sort-Items-by-Groups-Respecting-Dependencies/index.html @@ -12484,7 +12484,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1207.Unique-Number-of-Occurrences/index.html b/website/public/en/ChapterFour/1200~1299/1207.Unique-Number-of-Occurrences/index.html index 93e085933..518071ab2 100644 --- a/website/public/en/ChapterFour/1200~1299/1207.Unique-Number-of-Occurrences/index.html +++ b/website/public/en/ChapterFour/1200~1299/1207.Unique-Number-of-Occurrences/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1208.Get-Equal-Substrings-Within-Budget/index.html b/website/public/en/ChapterFour/1200~1299/1208.Get-Equal-Substrings-Within-Budget/index.html index 557e9cd69..fd5c1d53b 100644 --- a/website/public/en/ChapterFour/1200~1299/1208.Get-Equal-Substrings-Within-Budget/index.html +++ b/website/public/en/ChapterFour/1200~1299/1208.Get-Equal-Substrings-Within-Budget/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1209.Remove-All-Adjacent-Duplicates-in-String-II/index.html b/website/public/en/ChapterFour/1200~1299/1209.Remove-All-Adjacent-Duplicates-in-String-II/index.html index 2a3f6647b..12eac455c 100644 --- a/website/public/en/ChapterFour/1200~1299/1209.Remove-All-Adjacent-Duplicates-in-String-II/index.html +++ b/website/public/en/ChapterFour/1200~1299/1209.Remove-All-Adjacent-Duplicates-in-String-II/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1217.Minimum-Cost-to-Move-Chips-to-The-Same-Position/index.html b/website/public/en/ChapterFour/1200~1299/1217.Minimum-Cost-to-Move-Chips-to-The-Same-Position/index.html index 082c28170..ae50d4f9e 100644 --- a/website/public/en/ChapterFour/1200~1299/1217.Minimum-Cost-to-Move-Chips-to-The-Same-Position/index.html +++ b/website/public/en/ChapterFour/1200~1299/1217.Minimum-Cost-to-Move-Chips-to-The-Same-Position/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1221.Split-a-String-in-Balanced-Strings/index.html b/website/public/en/ChapterFour/1200~1299/1221.Split-a-String-in-Balanced-Strings/index.html index 8eb5a9615..f7b63ab65 100644 --- a/website/public/en/ChapterFour/1200~1299/1221.Split-a-String-in-Balanced-Strings/index.html +++ b/website/public/en/ChapterFour/1200~1299/1221.Split-a-String-in-Balanced-Strings/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1232.Check-If-It-Is-a-Straight-Line/index.html b/website/public/en/ChapterFour/1200~1299/1232.Check-If-It-Is-a-Straight-Line/index.html index 163e884e7..5da936768 100644 --- a/website/public/en/ChapterFour/1200~1299/1232.Check-If-It-Is-a-Straight-Line/index.html +++ b/website/public/en/ChapterFour/1200~1299/1232.Check-If-It-Is-a-Straight-Line/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1234.Replace-the-Substring-for-Balanced-String/index.html b/website/public/en/ChapterFour/1200~1299/1234.Replace-the-Substring-for-Balanced-String/index.html index 4aac3af7c..1b0ac0fe2 100644 --- a/website/public/en/ChapterFour/1200~1299/1234.Replace-the-Substring-for-Balanced-String/index.html +++ b/website/public/en/ChapterFour/1200~1299/1234.Replace-the-Substring-for-Balanced-String/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1235.Maximum-Profit-in-Job-Scheduling/index.html b/website/public/en/ChapterFour/1200~1299/1235.Maximum-Profit-in-Job-Scheduling/index.html index 6ac8d02ee..29a1da94a 100644 --- a/website/public/en/ChapterFour/1200~1299/1235.Maximum-Profit-in-Job-Scheduling/index.html +++ b/website/public/en/ChapterFour/1200~1299/1235.Maximum-Profit-in-Job-Scheduling/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1239.Maximum-Length-of-a-Concatenated-String-with-Unique-Characters/index.html b/website/public/en/ChapterFour/1200~1299/1239.Maximum-Length-of-a-Concatenated-String-with-Unique-Characters/index.html index 0ea204657..338624b64 100644 --- a/website/public/en/ChapterFour/1200~1299/1239.Maximum-Length-of-a-Concatenated-String-with-Unique-Characters/index.html +++ b/website/public/en/ChapterFour/1200~1299/1239.Maximum-Length-of-a-Concatenated-String-with-Unique-Characters/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1249.Minimum-Remove-to-Make-Valid-Parentheses/index.html b/website/public/en/ChapterFour/1200~1299/1249.Minimum-Remove-to-Make-Valid-Parentheses/index.html index c90afdebd..b0e0ba03b 100644 --- a/website/public/en/ChapterFour/1200~1299/1249.Minimum-Remove-to-Make-Valid-Parentheses/index.html +++ b/website/public/en/ChapterFour/1200~1299/1249.Minimum-Remove-to-Make-Valid-Parentheses/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1252.Cells-with-Odd-Values-in-a-Matrix/index.html b/website/public/en/ChapterFour/1200~1299/1252.Cells-with-Odd-Values-in-a-Matrix/index.html index d763822b1..0b528d6b0 100644 --- a/website/public/en/ChapterFour/1200~1299/1252.Cells-with-Odd-Values-in-a-Matrix/index.html +++ b/website/public/en/ChapterFour/1200~1299/1252.Cells-with-Odd-Values-in-a-Matrix/index.html @@ -12397,7 +12397,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1254.Number-of-Closed-Islands/index.html b/website/public/en/ChapterFour/1200~1299/1254.Number-of-Closed-Islands/index.html index ad17da158..45ed4490d 100644 --- a/website/public/en/ChapterFour/1200~1299/1254.Number-of-Closed-Islands/index.html +++ b/website/public/en/ChapterFour/1200~1299/1254.Number-of-Closed-Islands/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1260.Shift-2D-Grid/index.html b/website/public/en/ChapterFour/1200~1299/1260.Shift-2D-Grid/index.html index 1276b2c7a..c9d275bb5 100644 --- a/website/public/en/ChapterFour/1200~1299/1260.Shift-2D-Grid/index.html +++ b/website/public/en/ChapterFour/1200~1299/1260.Shift-2D-Grid/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1266.Minimum-Time-Visiting-All-Points/index.html b/website/public/en/ChapterFour/1200~1299/1266.Minimum-Time-Visiting-All-Points/index.html index 77f3247a1..1c2bc732d 100644 --- a/website/public/en/ChapterFour/1200~1299/1266.Minimum-Time-Visiting-All-Points/index.html +++ b/website/public/en/ChapterFour/1200~1299/1266.Minimum-Time-Visiting-All-Points/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1268.Search-Suggestions-System/index.html b/website/public/en/ChapterFour/1200~1299/1268.Search-Suggestions-System/index.html index 57a882d89..c72741732 100644 --- a/website/public/en/ChapterFour/1200~1299/1268.Search-Suggestions-System/index.html +++ b/website/public/en/ChapterFour/1200~1299/1268.Search-Suggestions-System/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1275.Find-Winner-on-a-Tic-Tac-Toe-Game/index.html b/website/public/en/ChapterFour/1200~1299/1275.Find-Winner-on-a-Tic-Tac-Toe-Game/index.html index d3d84b301..0726558ae 100644 --- a/website/public/en/ChapterFour/1200~1299/1275.Find-Winner-on-a-Tic-Tac-Toe-Game/index.html +++ b/website/public/en/ChapterFour/1200~1299/1275.Find-Winner-on-a-Tic-Tac-Toe-Game/index.html @@ -12435,7 +12435,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1281.Subtract-the-Product-and-Sum-of-Digits-of-an-Integer/index.html b/website/public/en/ChapterFour/1200~1299/1281.Subtract-the-Product-and-Sum-of-Digits-of-an-Integer/index.html index 7e169c8e7..eb174a29b 100644 --- a/website/public/en/ChapterFour/1200~1299/1281.Subtract-the-Product-and-Sum-of-Digits-of-an-Integer/index.html +++ b/website/public/en/ChapterFour/1200~1299/1281.Subtract-the-Product-and-Sum-of-Digits-of-an-Integer/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1283.Find-the-Smallest-Divisor-Given-a-Threshold/index.html b/website/public/en/ChapterFour/1200~1299/1283.Find-the-Smallest-Divisor-Given-a-Threshold/index.html index 5caa02397..af4d092d9 100644 --- a/website/public/en/ChapterFour/1200~1299/1283.Find-the-Smallest-Divisor-Given-a-Threshold/index.html +++ b/website/public/en/ChapterFour/1200~1299/1283.Find-the-Smallest-Divisor-Given-a-Threshold/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1287.Element-Appearing-More-Than-25-In-Sorted-Array/index.html b/website/public/en/ChapterFour/1200~1299/1287.Element-Appearing-More-Than-25-In-Sorted-Array/index.html index 73a96d624..5fad73127 100644 --- a/website/public/en/ChapterFour/1200~1299/1287.Element-Appearing-More-Than-25-In-Sorted-Array/index.html +++ b/website/public/en/ChapterFour/1200~1299/1287.Element-Appearing-More-Than-25-In-Sorted-Array/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1290.Convert-Binary-Number-in-a-Linked-List-to-Integer/index.html b/website/public/en/ChapterFour/1200~1299/1290.Convert-Binary-Number-in-a-Linked-List-to-Integer/index.html index c405aacc8..3d8aaf437 100644 --- a/website/public/en/ChapterFour/1200~1299/1290.Convert-Binary-Number-in-a-Linked-List-to-Integer/index.html +++ b/website/public/en/ChapterFour/1200~1299/1290.Convert-Binary-Number-in-a-Linked-List-to-Integer/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1292.Maximum-Side-Length-of-a-Square-with-Sum-Less-than-or-Equal-to-Threshold/index.html b/website/public/en/ChapterFour/1200~1299/1292.Maximum-Side-Length-of-a-Square-with-Sum-Less-than-or-Equal-to-Threshold/index.html index ae92a0f80..300bafce4 100644 --- a/website/public/en/ChapterFour/1200~1299/1292.Maximum-Side-Length-of-a-Square-with-Sum-Less-than-or-Equal-to-Threshold/index.html +++ b/website/public/en/ChapterFour/1200~1299/1292.Maximum-Side-Length-of-a-Square-with-Sum-Less-than-or-Equal-to-Threshold/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1293.Shortest-Path-in-a-Grid-with-Obstacles-Elimination/index.html b/website/public/en/ChapterFour/1200~1299/1293.Shortest-Path-in-a-Grid-with-Obstacles-Elimination/index.html index c6b6f1a14..00865cd58 100644 --- a/website/public/en/ChapterFour/1200~1299/1293.Shortest-Path-in-a-Grid-with-Obstacles-Elimination/index.html +++ b/website/public/en/ChapterFour/1200~1299/1293.Shortest-Path-in-a-Grid-with-Obstacles-Elimination/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1295.Find-Numbers-with-Even-Number-of-Digits/index.html b/website/public/en/ChapterFour/1200~1299/1295.Find-Numbers-with-Even-Number-of-Digits/index.html index 3e99edda1..a604261c3 100644 --- a/website/public/en/ChapterFour/1200~1299/1295.Find-Numbers-with-Even-Number-of-Digits/index.html +++ b/website/public/en/ChapterFour/1200~1299/1295.Find-Numbers-with-Even-Number-of-Digits/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1296.Divide-Array-in-Sets-of-K-Consecutive-Numbers/index.html b/website/public/en/ChapterFour/1200~1299/1296.Divide-Array-in-Sets-of-K-Consecutive-Numbers/index.html index bb1dfaba2..50205d071 100644 --- a/website/public/en/ChapterFour/1200~1299/1296.Divide-Array-in-Sets-of-K-Consecutive-Numbers/index.html +++ b/website/public/en/ChapterFour/1200~1299/1296.Divide-Array-in-Sets-of-K-Consecutive-Numbers/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/1299.Replace-Elements-with-Greatest-Element-on-Right-Side/index.html b/website/public/en/ChapterFour/1200~1299/1299.Replace-Elements-with-Greatest-Element-on-Right-Side/index.html index 06867d76d..d75e6851b 100644 --- a/website/public/en/ChapterFour/1200~1299/1299.Replace-Elements-with-Greatest-Element-on-Right-Side/index.html +++ b/website/public/en/ChapterFour/1200~1299/1299.Replace-Elements-with-Greatest-Element-on-Right-Side/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1200~1299/index.html b/website/public/en/ChapterFour/1200~1299/index.html index 99d28603c..9b70cad7d 100644 --- a/website/public/en/ChapterFour/1200~1299/index.html +++ b/website/public/en/ChapterFour/1200~1299/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1300.Sum-of-Mutated-Array-Closest-to-Target/index.html b/website/public/en/ChapterFour/1300~1399/1300.Sum-of-Mutated-Array-Closest-to-Target/index.html index 26d3bde57..fe795fadd 100644 --- a/website/public/en/ChapterFour/1300~1399/1300.Sum-of-Mutated-Array-Closest-to-Target/index.html +++ b/website/public/en/ChapterFour/1300~1399/1300.Sum-of-Mutated-Array-Closest-to-Target/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1302.Deepest-Leaves-Sum/index.html b/website/public/en/ChapterFour/1300~1399/1302.Deepest-Leaves-Sum/index.html index de24afbd4..19766456b 100644 --- a/website/public/en/ChapterFour/1300~1399/1302.Deepest-Leaves-Sum/index.html +++ b/website/public/en/ChapterFour/1300~1399/1302.Deepest-Leaves-Sum/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1304.Find-N-Unique-Integers-Sum-up-to-Zero/index.html b/website/public/en/ChapterFour/1300~1399/1304.Find-N-Unique-Integers-Sum-up-to-Zero/index.html index da7d65cb4..55b5b30b3 100644 --- a/website/public/en/ChapterFour/1300~1399/1304.Find-N-Unique-Integers-Sum-up-to-Zero/index.html +++ b/website/public/en/ChapterFour/1300~1399/1304.Find-N-Unique-Integers-Sum-up-to-Zero/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1305.All-Elements-in-Two-Binary-Search-Trees/index.html b/website/public/en/ChapterFour/1300~1399/1305.All-Elements-in-Two-Binary-Search-Trees/index.html index 1a6dc9b87..9188df86f 100644 --- a/website/public/en/ChapterFour/1300~1399/1305.All-Elements-in-Two-Binary-Search-Trees/index.html +++ b/website/public/en/ChapterFour/1300~1399/1305.All-Elements-in-Two-Binary-Search-Trees/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1306.Jump-Game-III/index.html b/website/public/en/ChapterFour/1300~1399/1306.Jump-Game-III/index.html index 55f04723b..c8599226f 100644 --- a/website/public/en/ChapterFour/1300~1399/1306.Jump-Game-III/index.html +++ b/website/public/en/ChapterFour/1300~1399/1306.Jump-Game-III/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1310.XOR-Queries-of-a-Subarray/index.html b/website/public/en/ChapterFour/1300~1399/1310.XOR-Queries-of-a-Subarray/index.html index 1ddbc473c..802211db6 100644 --- a/website/public/en/ChapterFour/1300~1399/1310.XOR-Queries-of-a-Subarray/index.html +++ b/website/public/en/ChapterFour/1300~1399/1310.XOR-Queries-of-a-Subarray/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1313.Decompress-Run-Length-Encoded-List/index.html b/website/public/en/ChapterFour/1300~1399/1313.Decompress-Run-Length-Encoded-List/index.html index 9fa579962..e3b2f0b9a 100644 --- a/website/public/en/ChapterFour/1300~1399/1313.Decompress-Run-Length-Encoded-List/index.html +++ b/website/public/en/ChapterFour/1300~1399/1313.Decompress-Run-Length-Encoded-List/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1317.Convert-Integer-to-the-Sum-of-Two-No-Zero-Integers/index.html b/website/public/en/ChapterFour/1300~1399/1317.Convert-Integer-to-the-Sum-of-Two-No-Zero-Integers/index.html index 08344a8a0..58e61e36c 100644 --- a/website/public/en/ChapterFour/1300~1399/1317.Convert-Integer-to-the-Sum-of-Two-No-Zero-Integers/index.html +++ b/website/public/en/ChapterFour/1300~1399/1317.Convert-Integer-to-the-Sum-of-Two-No-Zero-Integers/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1319.Number-of-Operations-to-Make-Network-Connected/index.html b/website/public/en/ChapterFour/1300~1399/1319.Number-of-Operations-to-Make-Network-Connected/index.html index 195c40658..db08a7c49 100644 --- a/website/public/en/ChapterFour/1300~1399/1319.Number-of-Operations-to-Make-Network-Connected/index.html +++ b/website/public/en/ChapterFour/1300~1399/1319.Number-of-Operations-to-Make-Network-Connected/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1329.Sort-the-Matrix-Diagonally/index.html b/website/public/en/ChapterFour/1300~1399/1329.Sort-the-Matrix-Diagonally/index.html index 76e946858..bcfe66e2e 100644 --- a/website/public/en/ChapterFour/1300~1399/1329.Sort-the-Matrix-Diagonally/index.html +++ b/website/public/en/ChapterFour/1300~1399/1329.Sort-the-Matrix-Diagonally/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1332.Remove-Palindromic-Subsequences/index.html b/website/public/en/ChapterFour/1300~1399/1332.Remove-Palindromic-Subsequences/index.html index 81339e6ed..669f2e807 100644 --- a/website/public/en/ChapterFour/1300~1399/1332.Remove-Palindromic-Subsequences/index.html +++ b/website/public/en/ChapterFour/1300~1399/1332.Remove-Palindromic-Subsequences/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1337.The-K-Weakest-Rows-in-a-Matrix/index.html b/website/public/en/ChapterFour/1300~1399/1337.The-K-Weakest-Rows-in-a-Matrix/index.html index 0bd2f6f1b..e99caba33 100644 --- a/website/public/en/ChapterFour/1300~1399/1337.The-K-Weakest-Rows-in-a-Matrix/index.html +++ b/website/public/en/ChapterFour/1300~1399/1337.The-K-Weakest-Rows-in-a-Matrix/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1353.Maximum-Number-of-Events-That-Can-Be-Attended/index.html b/website/public/en/ChapterFour/1300~1399/1353.Maximum-Number-of-Events-That-Can-Be-Attended/index.html index dc204b2c5..3e3da5138 100644 --- a/website/public/en/ChapterFour/1300~1399/1353.Maximum-Number-of-Events-That-Can-Be-Attended/index.html +++ b/website/public/en/ChapterFour/1300~1399/1353.Maximum-Number-of-Events-That-Can-Be-Attended/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1380.Lucky-Numbers-in-a-Matrix/index.html b/website/public/en/ChapterFour/1300~1399/1380.Lucky-Numbers-in-a-Matrix/index.html index 9f6c3f7fb..56c226e31 100644 --- a/website/public/en/ChapterFour/1300~1399/1380.Lucky-Numbers-in-a-Matrix/index.html +++ b/website/public/en/ChapterFour/1300~1399/1380.Lucky-Numbers-in-a-Matrix/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1383.Maximum-Performance-of-a-Team/index.html b/website/public/en/ChapterFour/1300~1399/1383.Maximum-Performance-of-a-Team/index.html index 9765db76d..a49dfb6e9 100644 --- a/website/public/en/ChapterFour/1300~1399/1383.Maximum-Performance-of-a-Team/index.html +++ b/website/public/en/ChapterFour/1300~1399/1383.Maximum-Performance-of-a-Team/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1385.Find-the-Distance-Value-Between-Two-Arrays/index.html b/website/public/en/ChapterFour/1300~1399/1385.Find-the-Distance-Value-Between-Two-Arrays/index.html index 67bd98bdd..037ca9816 100644 --- a/website/public/en/ChapterFour/1300~1399/1385.Find-the-Distance-Value-Between-Two-Arrays/index.html +++ b/website/public/en/ChapterFour/1300~1399/1385.Find-the-Distance-Value-Between-Two-Arrays/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1389.Create-Target-Array-in-the-Given-Order/index.html b/website/public/en/ChapterFour/1300~1399/1389.Create-Target-Array-in-the-Given-Order/index.html index af0729053..3abd39977 100644 --- a/website/public/en/ChapterFour/1300~1399/1389.Create-Target-Array-in-the-Given-Order/index.html +++ b/website/public/en/ChapterFour/1300~1399/1389.Create-Target-Array-in-the-Given-Order/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/1396.Design-Underground-System/index.html b/website/public/en/ChapterFour/1300~1399/1396.Design-Underground-System/index.html index 470caead9..77308056e 100644 --- a/website/public/en/ChapterFour/1300~1399/1396.Design-Underground-System/index.html +++ b/website/public/en/ChapterFour/1300~1399/1396.Design-Underground-System/index.html @@ -12465,7 +12465,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1300~1399/index.html b/website/public/en/ChapterFour/1300~1399/index.html index c579ec8fc..fe20c986e 100644 --- a/website/public/en/ChapterFour/1300~1399/index.html +++ b/website/public/en/ChapterFour/1300~1399/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1423.Maximum-Points-You-Can-Obtain-from-Cards/index.html b/website/public/en/ChapterFour/1400~1499/1423.Maximum-Points-You-Can-Obtain-from-Cards/index.html index 6610d0bc2..49cd05341 100644 --- a/website/public/en/ChapterFour/1400~1499/1423.Maximum-Points-You-Can-Obtain-from-Cards/index.html +++ b/website/public/en/ChapterFour/1400~1499/1423.Maximum-Points-You-Can-Obtain-from-Cards/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1437.Check-If-All-1s-Are-at-Least-Length-K-Places-Away/index.html b/website/public/en/ChapterFour/1400~1499/1437.Check-If-All-1s-Are-at-Least-Length-K-Places-Away/index.html index bab2a7c91..4e4786bcb 100644 --- a/website/public/en/ChapterFour/1400~1499/1437.Check-If-All-1s-Are-at-Least-Length-K-Places-Away/index.html +++ b/website/public/en/ChapterFour/1400~1499/1437.Check-If-All-1s-Are-at-Least-Length-K-Places-Away/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1438.Longest-Continuous-Subarray-With-Absolute-Diff-Less-Than-or-Equal-to-Limit/index.html b/website/public/en/ChapterFour/1400~1499/1438.Longest-Continuous-Subarray-With-Absolute-Diff-Less-Than-or-Equal-to-Limit/index.html index 53e04314c..4bb32207c 100644 --- a/website/public/en/ChapterFour/1400~1499/1438.Longest-Continuous-Subarray-With-Absolute-Diff-Less-Than-or-Equal-to-Limit/index.html +++ b/website/public/en/ChapterFour/1400~1499/1438.Longest-Continuous-Subarray-With-Absolute-Diff-Less-Than-or-Equal-to-Limit/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1439.Find-the-Kth-Smallest-Sum-of-a-Matrix-With-Sorted-Rows/index.html b/website/public/en/ChapterFour/1400~1499/1439.Find-the-Kth-Smallest-Sum-of-a-Matrix-With-Sorted-Rows/index.html index 1f0236416..d8a238ff2 100644 --- a/website/public/en/ChapterFour/1400~1499/1439.Find-the-Kth-Smallest-Sum-of-a-Matrix-With-Sorted-Rows/index.html +++ b/website/public/en/ChapterFour/1400~1499/1439.Find-the-Kth-Smallest-Sum-of-a-Matrix-With-Sorted-Rows/index.html @@ -12431,7 +12431,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR/index.html b/website/public/en/ChapterFour/1400~1499/1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR/index.html index ff7903a94..bbeae1597 100644 --- a/website/public/en/ChapterFour/1400~1499/1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR/index.html +++ b/website/public/en/ChapterFour/1400~1499/1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1446.Consecutive-Characters/index.html b/website/public/en/ChapterFour/1400~1499/1446.Consecutive-Characters/index.html index 9c23b441b..a17ef2466 100644 --- a/website/public/en/ChapterFour/1400~1499/1446.Consecutive-Characters/index.html +++ b/website/public/en/ChapterFour/1400~1499/1446.Consecutive-Characters/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1455.Check-If-a-Word-Occurs-As-a-Prefix-of-Any-Word-in-a-Sentence/index.html b/website/public/en/ChapterFour/1400~1499/1455.Check-If-a-Word-Occurs-As-a-Prefix-of-Any-Word-in-a-Sentence/index.html index 4b9adcf0e..520b2a3f9 100644 --- a/website/public/en/ChapterFour/1400~1499/1455.Check-If-a-Word-Occurs-As-a-Prefix-of-Any-Word-in-a-Sentence/index.html +++ b/website/public/en/ChapterFour/1400~1499/1455.Check-If-a-Word-Occurs-As-a-Prefix-of-Any-Word-in-a-Sentence/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K/index.html b/website/public/en/ChapterFour/1400~1499/1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K/index.html index f041e490f..f20547e29 100644 --- a/website/public/en/ChapterFour/1400~1499/1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K/index.html +++ b/website/public/en/ChapterFour/1400~1499/1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1463.Cherry-Pickup-II/index.html b/website/public/en/ChapterFour/1400~1499/1463.Cherry-Pickup-II/index.html index b1427b241..173fb554d 100644 --- a/website/public/en/ChapterFour/1400~1499/1463.Cherry-Pickup-II/index.html +++ b/website/public/en/ChapterFour/1400~1499/1463.Cherry-Pickup-II/index.html @@ -12445,7 +12445,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1464.Maximum-Product-of-Two-Elements-in-an-Array/index.html b/website/public/en/ChapterFour/1400~1499/1464.Maximum-Product-of-Two-Elements-in-an-Array/index.html index 25c372c0e..d0e00b67d 100644 --- a/website/public/en/ChapterFour/1400~1499/1464.Maximum-Product-of-Two-Elements-in-an-Array/index.html +++ b/website/public/en/ChapterFour/1400~1499/1464.Maximum-Product-of-Two-Elements-in-an-Array/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1465.Maximum-Area-of-a-Piece-of-Cake-After-Horizontal-and-Vertical-Cuts/index.html b/website/public/en/ChapterFour/1400~1499/1465.Maximum-Area-of-a-Piece-of-Cake-After-Horizontal-and-Vertical-Cuts/index.html index d934c5960..dcbc5fcb0 100644 --- a/website/public/en/ChapterFour/1400~1499/1465.Maximum-Area-of-a-Piece-of-Cake-After-Horizontal-and-Vertical-Cuts/index.html +++ b/website/public/en/ChapterFour/1400~1499/1465.Maximum-Area-of-a-Piece-of-Cake-After-Horizontal-and-Vertical-Cuts/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1470.Shuffle-the-Array/index.html b/website/public/en/ChapterFour/1400~1499/1470.Shuffle-the-Array/index.html index b2795c781..592c0a960 100644 --- a/website/public/en/ChapterFour/1400~1499/1470.Shuffle-the-Array/index.html +++ b/website/public/en/ChapterFour/1400~1499/1470.Shuffle-the-Array/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1480.Running-Sum-of-1d-Array/index.html b/website/public/en/ChapterFour/1400~1499/1480.Running-Sum-of-1d-Array/index.html index 4e309840a..583fa679a 100644 --- a/website/public/en/ChapterFour/1400~1499/1480.Running-Sum-of-1d-Array/index.html +++ b/website/public/en/ChapterFour/1400~1499/1480.Running-Sum-of-1d-Array/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1482.Minimum-Number-of-Days-to-Make-m-Bouquets/index.html b/website/public/en/ChapterFour/1400~1499/1482.Minimum-Number-of-Days-to-Make-m-Bouquets/index.html index 17721154a..a9faa75e6 100644 --- a/website/public/en/ChapterFour/1400~1499/1482.Minimum-Number-of-Days-to-Make-m-Bouquets/index.html +++ b/website/public/en/ChapterFour/1400~1499/1482.Minimum-Number-of-Days-to-Make-m-Bouquets/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/1486.XOR-Operation-in-an-Array/index.html b/website/public/en/ChapterFour/1400~1499/1486.XOR-Operation-in-an-Array/index.html index 30715fa89..65b93bc45 100644 --- a/website/public/en/ChapterFour/1400~1499/1486.XOR-Operation-in-an-Array/index.html +++ b/website/public/en/ChapterFour/1400~1499/1486.XOR-Operation-in-an-Array/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1400~1499/index.html b/website/public/en/ChapterFour/1400~1499/index.html index 82666417f..1f20da223 100644 --- a/website/public/en/ChapterFour/1400~1499/index.html +++ b/website/public/en/ChapterFour/1400~1499/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1500~1599/1512.Number-of-Good-Pairs/index.html b/website/public/en/ChapterFour/1500~1599/1512.Number-of-Good-Pairs/index.html index 51ceaf771..8d56af370 100644 --- a/website/public/en/ChapterFour/1500~1599/1512.Number-of-Good-Pairs/index.html +++ b/website/public/en/ChapterFour/1500~1599/1512.Number-of-Good-Pairs/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1500~1599/1518.Water-Bottles/index.html b/website/public/en/ChapterFour/1500~1599/1518.Water-Bottles/index.html index bdf76237a..03f57d9dc 100644 --- a/website/public/en/ChapterFour/1500~1599/1518.Water-Bottles/index.html +++ b/website/public/en/ChapterFour/1500~1599/1518.Water-Bottles/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1500~1599/1539.Kth-Missing-Positive-Number/index.html b/website/public/en/ChapterFour/1500~1599/1539.Kth-Missing-Positive-Number/index.html index cbe52e05e..333716854 100644 --- a/website/public/en/ChapterFour/1500~1599/1539.Kth-Missing-Positive-Number/index.html +++ b/website/public/en/ChapterFour/1500~1599/1539.Kth-Missing-Positive-Number/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1500~1599/1551.Minimum-Operations-to-Make-Array-Equal/index.html b/website/public/en/ChapterFour/1500~1599/1551.Minimum-Operations-to-Make-Array-Equal/index.html index 29acf1ca9..8b7522c27 100644 --- a/website/public/en/ChapterFour/1500~1599/1551.Minimum-Operations-to-Make-Array-Equal/index.html +++ b/website/public/en/ChapterFour/1500~1599/1551.Minimum-Operations-to-Make-Array-Equal/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1500~1599/1572.Matrix-Diagonal-Sum/index.html b/website/public/en/ChapterFour/1500~1599/1572.Matrix-Diagonal-Sum/index.html index 65a5ce8a1..311dea711 100644 --- a/website/public/en/ChapterFour/1500~1599/1572.Matrix-Diagonal-Sum/index.html +++ b/website/public/en/ChapterFour/1500~1599/1572.Matrix-Diagonal-Sum/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1500~1599/1573.Number-of-Ways-to-Split-a-String/index.html b/website/public/en/ChapterFour/1500~1599/1573.Number-of-Ways-to-Split-a-String/index.html index 58933b4dd..db743d8ae 100644 --- a/website/public/en/ChapterFour/1500~1599/1573.Number-of-Ways-to-Split-a-String/index.html +++ b/website/public/en/ChapterFour/1500~1599/1573.Number-of-Ways-to-Split-a-String/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1500~1599/1576.Replace-All-s-to-Avoid-Consecutive-Repeating-Characters/index.html b/website/public/en/ChapterFour/1500~1599/1576.Replace-All-s-to-Avoid-Consecutive-Repeating-Characters/index.html index f4af1b024..9c8c2a072 100644 --- a/website/public/en/ChapterFour/1500~1599/1576.Replace-All-s-to-Avoid-Consecutive-Repeating-Characters/index.html +++ b/website/public/en/ChapterFour/1500~1599/1576.Replace-All-s-to-Avoid-Consecutive-Repeating-Characters/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1500~1599/1579.Remove-Max-Number-of-Edges-to-Keep-Graph-Fully-Traversable/index.html b/website/public/en/ChapterFour/1500~1599/1579.Remove-Max-Number-of-Edges-to-Keep-Graph-Fully-Traversable/index.html index b7585e78d..e804199e1 100644 --- a/website/public/en/ChapterFour/1500~1599/1579.Remove-Max-Number-of-Edges-to-Keep-Graph-Fully-Traversable/index.html +++ b/website/public/en/ChapterFour/1500~1599/1579.Remove-Max-Number-of-Edges-to-Keep-Graph-Fully-Traversable/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1500~1599/index.html b/website/public/en/ChapterFour/1500~1599/index.html index 1f26227fa..cfa0bc367 100644 --- a/website/public/en/ChapterFour/1500~1599/index.html +++ b/website/public/en/ChapterFour/1500~1599/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1600.Throne-Inheritance/index.html b/website/public/en/ChapterFour/1600~1699/1600.Throne-Inheritance/index.html index 4ffde8ca8..fb95fb4ef 100644 --- a/website/public/en/ChapterFour/1600~1699/1600.Throne-Inheritance/index.html +++ b/website/public/en/ChapterFour/1600~1699/1600.Throne-Inheritance/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1603.Design-Parking-System/index.html b/website/public/en/ChapterFour/1600~1699/1603.Design-Parking-System/index.html index 705310562..b9e473990 100644 --- a/website/public/en/ChapterFour/1600~1699/1603.Design-Parking-System/index.html +++ b/website/public/en/ChapterFour/1600~1699/1603.Design-Parking-System/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1608.Special-Array-With-X-Elements-Greater-Than-or-Equal-X/index.html b/website/public/en/ChapterFour/1600~1699/1608.Special-Array-With-X-Elements-Greater-Than-or-Equal-X/index.html index a4cb938e7..8729a9a18 100644 --- a/website/public/en/ChapterFour/1600~1699/1608.Special-Array-With-X-Elements-Greater-Than-or-Equal-X/index.html +++ b/website/public/en/ChapterFour/1600~1699/1608.Special-Array-With-X-Elements-Greater-Than-or-Equal-X/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1609.Even-Odd-Tree/index.html b/website/public/en/ChapterFour/1600~1699/1609.Even-Odd-Tree/index.html index f38f76171..25c4b703f 100644 --- a/website/public/en/ChapterFour/1600~1699/1609.Even-Odd-Tree/index.html +++ b/website/public/en/ChapterFour/1600~1699/1609.Even-Odd-Tree/index.html @@ -12446,7 +12446,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1614.Maximum-Nesting-Depth-of-the-Parentheses/index.html b/website/public/en/ChapterFour/1600~1699/1614.Maximum-Nesting-Depth-of-the-Parentheses/index.html index 805c8f667..83574b4a9 100644 --- a/website/public/en/ChapterFour/1600~1699/1614.Maximum-Nesting-Depth-of-the-Parentheses/index.html +++ b/website/public/en/ChapterFour/1600~1699/1614.Maximum-Nesting-Depth-of-the-Parentheses/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1619.Mean-of-Array-After-Removing-Some-Elements/index.html b/website/public/en/ChapterFour/1600~1699/1619.Mean-of-Array-After-Removing-Some-Elements/index.html index b154f17c9..2cd8fd8e8 100644 --- a/website/public/en/ChapterFour/1600~1699/1619.Mean-of-Array-After-Removing-Some-Elements/index.html +++ b/website/public/en/ChapterFour/1600~1699/1619.Mean-of-Array-After-Removing-Some-Elements/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1624.Largest-Substring-Between-Two-Equal-Characters/index.html b/website/public/en/ChapterFour/1600~1699/1624.Largest-Substring-Between-Two-Equal-Characters/index.html index 02e2dfd3f..f1dfd1c5e 100644 --- a/website/public/en/ChapterFour/1600~1699/1624.Largest-Substring-Between-Two-Equal-Characters/index.html +++ b/website/public/en/ChapterFour/1600~1699/1624.Largest-Substring-Between-Two-Equal-Characters/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1629.Slowest-Key/index.html b/website/public/en/ChapterFour/1600~1699/1629.Slowest-Key/index.html index a1d5438a5..f6f6ce141 100644 --- a/website/public/en/ChapterFour/1600~1699/1629.Slowest-Key/index.html +++ b/website/public/en/ChapterFour/1600~1699/1629.Slowest-Key/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1631.Path-With-Minimum-Effort/index.html b/website/public/en/ChapterFour/1600~1699/1631.Path-With-Minimum-Effort/index.html index 096f86afe..4727dca8e 100644 --- a/website/public/en/ChapterFour/1600~1699/1631.Path-With-Minimum-Effort/index.html +++ b/website/public/en/ChapterFour/1600~1699/1631.Path-With-Minimum-Effort/index.html @@ -12455,7 +12455,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1636.Sort-Array-by-Increasing-Frequency/index.html b/website/public/en/ChapterFour/1600~1699/1636.Sort-Array-by-Increasing-Frequency/index.html index 01c7f75e3..6a65807d4 100644 --- a/website/public/en/ChapterFour/1600~1699/1636.Sort-Array-by-Increasing-Frequency/index.html +++ b/website/public/en/ChapterFour/1600~1699/1636.Sort-Array-by-Increasing-Frequency/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1640.Check-Array-Formation-Through-Concatenation/index.html b/website/public/en/ChapterFour/1600~1699/1640.Check-Array-Formation-Through-Concatenation/index.html index 79661846a..7f5d1432a 100644 --- a/website/public/en/ChapterFour/1600~1699/1640.Check-Array-Formation-Through-Concatenation/index.html +++ b/website/public/en/ChapterFour/1600~1699/1640.Check-Array-Formation-Through-Concatenation/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1641.Count-Sorted-Vowel-Strings/index.html b/website/public/en/ChapterFour/1600~1699/1641.Count-Sorted-Vowel-Strings/index.html index 16d4e9120..6af2d1e3c 100644 --- a/website/public/en/ChapterFour/1600~1699/1641.Count-Sorted-Vowel-Strings/index.html +++ b/website/public/en/ChapterFour/1600~1699/1641.Count-Sorted-Vowel-Strings/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1642.Furthest-Building-You-Can-Reach/index.html b/website/public/en/ChapterFour/1600~1699/1642.Furthest-Building-You-Can-Reach/index.html index 10f65de8c..fe4842830 100644 --- a/website/public/en/ChapterFour/1600~1699/1642.Furthest-Building-You-Can-Reach/index.html +++ b/website/public/en/ChapterFour/1600~1699/1642.Furthest-Building-You-Can-Reach/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1646.Get-Maximum-in-Generated-Array/index.html b/website/public/en/ChapterFour/1600~1699/1646.Get-Maximum-in-Generated-Array/index.html index ef9e05c3e..057eb54ce 100644 --- a/website/public/en/ChapterFour/1600~1699/1646.Get-Maximum-in-Generated-Array/index.html +++ b/website/public/en/ChapterFour/1600~1699/1646.Get-Maximum-in-Generated-Array/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1647.Minimum-Deletions-to-Make-Character-Frequencies-Unique/index.html b/website/public/en/ChapterFour/1600~1699/1647.Minimum-Deletions-to-Make-Character-Frequencies-Unique/index.html index 231a2c044..32236f715 100644 --- a/website/public/en/ChapterFour/1600~1699/1647.Minimum-Deletions-to-Make-Character-Frequencies-Unique/index.html +++ b/website/public/en/ChapterFour/1600~1699/1647.Minimum-Deletions-to-Make-Character-Frequencies-Unique/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1648.Sell-Diminishing-Valued-Colored-Balls/index.html b/website/public/en/ChapterFour/1600~1699/1648.Sell-Diminishing-Valued-Colored-Balls/index.html index d700532aa..b449263c8 100644 --- a/website/public/en/ChapterFour/1600~1699/1648.Sell-Diminishing-Valued-Colored-Balls/index.html +++ b/website/public/en/ChapterFour/1600~1699/1648.Sell-Diminishing-Valued-Colored-Balls/index.html @@ -12426,7 +12426,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1649.Create-Sorted-Array-through-Instructions/index.html b/website/public/en/ChapterFour/1600~1699/1649.Create-Sorted-Array-through-Instructions/index.html index 4a92805a4..abeef08b4 100644 --- a/website/public/en/ChapterFour/1600~1699/1649.Create-Sorted-Array-through-Instructions/index.html +++ b/website/public/en/ChapterFour/1600~1699/1649.Create-Sorted-Array-through-Instructions/index.html @@ -12437,7 +12437,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1652.Defuse-the-Bomb/index.html b/website/public/en/ChapterFour/1600~1699/1652.Defuse-the-Bomb/index.html index 3aa00a6c1..03fd45404 100644 --- a/website/public/en/ChapterFour/1600~1699/1652.Defuse-the-Bomb/index.html +++ b/website/public/en/ChapterFour/1600~1699/1652.Defuse-the-Bomb/index.html @@ -12412,7 +12412,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1653.Minimum-Deletions-to-Make-String-Balanced/index.html b/website/public/en/ChapterFour/1600~1699/1653.Minimum-Deletions-to-Make-String-Balanced/index.html index d53de6f6c..a777f2696 100644 --- a/website/public/en/ChapterFour/1600~1699/1653.Minimum-Deletions-to-Make-String-Balanced/index.html +++ b/website/public/en/ChapterFour/1600~1699/1653.Minimum-Deletions-to-Make-String-Balanced/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1654.Minimum-Jumps-to-Reach-Home/index.html b/website/public/en/ChapterFour/1600~1699/1654.Minimum-Jumps-to-Reach-Home/index.html index 2d138d1bb..724180e81 100644 --- a/website/public/en/ChapterFour/1600~1699/1654.Minimum-Jumps-to-Reach-Home/index.html +++ b/website/public/en/ChapterFour/1600~1699/1654.Minimum-Jumps-to-Reach-Home/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1655.Distribute-Repeating-Integers/index.html b/website/public/en/ChapterFour/1600~1699/1655.Distribute-Repeating-Integers/index.html index cf8991c46..b01a9fa00 100644 --- a/website/public/en/ChapterFour/1600~1699/1655.Distribute-Repeating-Integers/index.html +++ b/website/public/en/ChapterFour/1600~1699/1655.Distribute-Repeating-Integers/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1656.Design-an-Ordered-Stream/index.html b/website/public/en/ChapterFour/1600~1699/1656.Design-an-Ordered-Stream/index.html index f6391f88e..0210129d9 100644 --- a/website/public/en/ChapterFour/1600~1699/1656.Design-an-Ordered-Stream/index.html +++ b/website/public/en/ChapterFour/1600~1699/1656.Design-an-Ordered-Stream/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1657.Determine-if-Two-Strings-Are-Close/index.html b/website/public/en/ChapterFour/1600~1699/1657.Determine-if-Two-Strings-Are-Close/index.html index 2f858596b..ef802420d 100644 --- a/website/public/en/ChapterFour/1600~1699/1657.Determine-if-Two-Strings-Are-Close/index.html +++ b/website/public/en/ChapterFour/1600~1699/1657.Determine-if-Two-Strings-Are-Close/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1658.Minimum-Operations-to-Reduce-X-to-Zero/index.html b/website/public/en/ChapterFour/1600~1699/1658.Minimum-Operations-to-Reduce-X-to-Zero/index.html index f9a33b389..dd1742c92 100644 --- a/website/public/en/ChapterFour/1600~1699/1658.Minimum-Operations-to-Reduce-X-to-Zero/index.html +++ b/website/public/en/ChapterFour/1600~1699/1658.Minimum-Operations-to-Reduce-X-to-Zero/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1659.Maximize-Grid-Happiness/index.html b/website/public/en/ChapterFour/1600~1699/1659.Maximize-Grid-Happiness/index.html index fe9c52b63..429d162d6 100644 --- a/website/public/en/ChapterFour/1600~1699/1659.Maximize-Grid-Happiness/index.html +++ b/website/public/en/ChapterFour/1600~1699/1659.Maximize-Grid-Happiness/index.html @@ -12471,7 +12471,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1662.Check-If-Two-String-Arrays-are-Equivalent/index.html b/website/public/en/ChapterFour/1600~1699/1662.Check-If-Two-String-Arrays-are-Equivalent/index.html index 6dc48a83c..7c924495e 100644 --- a/website/public/en/ChapterFour/1600~1699/1662.Check-If-Two-String-Arrays-are-Equivalent/index.html +++ b/website/public/en/ChapterFour/1600~1699/1662.Check-If-Two-String-Arrays-are-Equivalent/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1663.Smallest-String-With-A-Given-Numeric-Value/index.html b/website/public/en/ChapterFour/1600~1699/1663.Smallest-String-With-A-Given-Numeric-Value/index.html index 220300fa0..d8690b53a 100644 --- a/website/public/en/ChapterFour/1600~1699/1663.Smallest-String-With-A-Given-Numeric-Value/index.html +++ b/website/public/en/ChapterFour/1600~1699/1663.Smallest-String-With-A-Given-Numeric-Value/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1664.Ways-to-Make-a-Fair-Array/index.html b/website/public/en/ChapterFour/1600~1699/1664.Ways-to-Make-a-Fair-Array/index.html index 40bd9b6e0..a49bb2bfc 100644 --- a/website/public/en/ChapterFour/1600~1699/1664.Ways-to-Make-a-Fair-Array/index.html +++ b/website/public/en/ChapterFour/1600~1699/1664.Ways-to-Make-a-Fair-Array/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1665.Minimum-Initial-Energy-to-Finish-Tasks/index.html b/website/public/en/ChapterFour/1600~1699/1665.Minimum-Initial-Energy-to-Finish-Tasks/index.html index b7ee53d76..2b3a9760e 100644 --- a/website/public/en/ChapterFour/1600~1699/1665.Minimum-Initial-Energy-to-Finish-Tasks/index.html +++ b/website/public/en/ChapterFour/1600~1699/1665.Minimum-Initial-Energy-to-Finish-Tasks/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1668.Maximum-Repeating-Substring/index.html b/website/public/en/ChapterFour/1600~1699/1668.Maximum-Repeating-Substring/index.html index d711cdeac..79d3b7f6d 100644 --- a/website/public/en/ChapterFour/1600~1699/1668.Maximum-Repeating-Substring/index.html +++ b/website/public/en/ChapterFour/1600~1699/1668.Maximum-Repeating-Substring/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1669.Merge-In-Between-Linked-Lists/index.html b/website/public/en/ChapterFour/1600~1699/1669.Merge-In-Between-Linked-Lists/index.html index 4aa3ded42..d36fc048a 100644 --- a/website/public/en/ChapterFour/1600~1699/1669.Merge-In-Between-Linked-Lists/index.html +++ b/website/public/en/ChapterFour/1600~1699/1669.Merge-In-Between-Linked-Lists/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1670.Design-Front-Middle-Back-Queue/index.html b/website/public/en/ChapterFour/1600~1699/1670.Design-Front-Middle-Back-Queue/index.html index f440ef1d7..1bdd4ed46 100644 --- a/website/public/en/ChapterFour/1600~1699/1670.Design-Front-Middle-Back-Queue/index.html +++ b/website/public/en/ChapterFour/1600~1699/1670.Design-Front-Middle-Back-Queue/index.html @@ -12470,7 +12470,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1672.Richest-Customer-Wealth/index.html b/website/public/en/ChapterFour/1600~1699/1672.Richest-Customer-Wealth/index.html index 7241870ee..05ab8408a 100644 --- a/website/public/en/ChapterFour/1600~1699/1672.Richest-Customer-Wealth/index.html +++ b/website/public/en/ChapterFour/1600~1699/1672.Richest-Customer-Wealth/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1673.Find-the-Most-Competitive-Subsequence/index.html b/website/public/en/ChapterFour/1600~1699/1673.Find-the-Most-Competitive-Subsequence/index.html index 58e78dd86..8f378ac00 100644 --- a/website/public/en/ChapterFour/1600~1699/1673.Find-the-Most-Competitive-Subsequence/index.html +++ b/website/public/en/ChapterFour/1600~1699/1673.Find-the-Most-Competitive-Subsequence/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1674.Minimum-Moves-to-Make-Array-Complementary/index.html b/website/public/en/ChapterFour/1600~1699/1674.Minimum-Moves-to-Make-Array-Complementary/index.html index c31d4f16a..4fa2c3401 100644 --- a/website/public/en/ChapterFour/1600~1699/1674.Minimum-Moves-to-Make-Array-Complementary/index.html +++ b/website/public/en/ChapterFour/1600~1699/1674.Minimum-Moves-to-Make-Array-Complementary/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1675.Minimize-Deviation-in-Array/index.html b/website/public/en/ChapterFour/1600~1699/1675.Minimize-Deviation-in-Array/index.html index 33dca40a7..37811e2b4 100644 --- a/website/public/en/ChapterFour/1600~1699/1675.Minimize-Deviation-in-Array/index.html +++ b/website/public/en/ChapterFour/1600~1699/1675.Minimize-Deviation-in-Array/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1678.Goal-Parser-Interpretation/index.html b/website/public/en/ChapterFour/1600~1699/1678.Goal-Parser-Interpretation/index.html index b003256cd..19b4867b4 100644 --- a/website/public/en/ChapterFour/1600~1699/1678.Goal-Parser-Interpretation/index.html +++ b/website/public/en/ChapterFour/1600~1699/1678.Goal-Parser-Interpretation/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1679.Max-Number-of-K-Sum-Pairs/index.html b/website/public/en/ChapterFour/1600~1699/1679.Max-Number-of-K-Sum-Pairs/index.html index 505ffcc49..3ed32899f 100644 --- a/website/public/en/ChapterFour/1600~1699/1679.Max-Number-of-K-Sum-Pairs/index.html +++ b/website/public/en/ChapterFour/1600~1699/1679.Max-Number-of-K-Sum-Pairs/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1680.Concatenation-of-Consecutive-Binary-Numbers/index.html b/website/public/en/ChapterFour/1600~1699/1680.Concatenation-of-Consecutive-Binary-Numbers/index.html index be78a54be..91c54d963 100644 --- a/website/public/en/ChapterFour/1600~1699/1680.Concatenation-of-Consecutive-Binary-Numbers/index.html +++ b/website/public/en/ChapterFour/1600~1699/1680.Concatenation-of-Consecutive-Binary-Numbers/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1681.Minimum-Incompatibility/index.html b/website/public/en/ChapterFour/1600~1699/1681.Minimum-Incompatibility/index.html index 68de29c93..97e6f7135 100644 --- a/website/public/en/ChapterFour/1600~1699/1681.Minimum-Incompatibility/index.html +++ b/website/public/en/ChapterFour/1600~1699/1681.Minimum-Incompatibility/index.html @@ -12408,7 +12408,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1684.Count-the-Number-of-Consistent-Strings/index.html b/website/public/en/ChapterFour/1600~1699/1684.Count-the-Number-of-Consistent-Strings/index.html index 9f390de29..14cafd16a 100644 --- a/website/public/en/ChapterFour/1600~1699/1684.Count-the-Number-of-Consistent-Strings/index.html +++ b/website/public/en/ChapterFour/1600~1699/1684.Count-the-Number-of-Consistent-Strings/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1685.Sum-of-Absolute-Differences-in-a-Sorted-Array/index.html b/website/public/en/ChapterFour/1600~1699/1685.Sum-of-Absolute-Differences-in-a-Sorted-Array/index.html index 681ea8a8d..c6e8ef3ee 100644 --- a/website/public/en/ChapterFour/1600~1699/1685.Sum-of-Absolute-Differences-in-a-Sorted-Array/index.html +++ b/website/public/en/ChapterFour/1600~1699/1685.Sum-of-Absolute-Differences-in-a-Sorted-Array/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1688.Count-of-Matches-in-Tournament/index.html b/website/public/en/ChapterFour/1600~1699/1688.Count-of-Matches-in-Tournament/index.html index 28ec20d12..d46cab855 100644 --- a/website/public/en/ChapterFour/1600~1699/1688.Count-of-Matches-in-Tournament/index.html +++ b/website/public/en/ChapterFour/1600~1699/1688.Count-of-Matches-in-Tournament/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1689.Partitioning-Into-Minimum-Number-Of-Deci-Binary-Numbers/index.html b/website/public/en/ChapterFour/1600~1699/1689.Partitioning-Into-Minimum-Number-Of-Deci-Binary-Numbers/index.html index 2218aad36..8f91c1651 100644 --- a/website/public/en/ChapterFour/1600~1699/1689.Partitioning-Into-Minimum-Number-Of-Deci-Binary-Numbers/index.html +++ b/website/public/en/ChapterFour/1600~1699/1689.Partitioning-Into-Minimum-Number-Of-Deci-Binary-Numbers/index.html @@ -12348,7 +12348,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1690.Stone-Game-VII/index.html b/website/public/en/ChapterFour/1600~1699/1690.Stone-Game-VII/index.html index eeb12287b..762ee3c8d 100644 --- a/website/public/en/ChapterFour/1600~1699/1690.Stone-Game-VII/index.html +++ b/website/public/en/ChapterFour/1600~1699/1690.Stone-Game-VII/index.html @@ -12420,7 +12420,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1691.Maximum-Height-by-Stacking-Cuboids/index.html b/website/public/en/ChapterFour/1600~1699/1691.Maximum-Height-by-Stacking-Cuboids/index.html index c717a0090..47ebab34d 100644 --- a/website/public/en/ChapterFour/1600~1699/1691.Maximum-Height-by-Stacking-Cuboids/index.html +++ b/website/public/en/ChapterFour/1600~1699/1691.Maximum-Height-by-Stacking-Cuboids/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1694.Reformat-Phone-Number/index.html b/website/public/en/ChapterFour/1600~1699/1694.Reformat-Phone-Number/index.html index 0dc27dda8..93d463e1b 100644 --- a/website/public/en/ChapterFour/1600~1699/1694.Reformat-Phone-Number/index.html +++ b/website/public/en/ChapterFour/1600~1699/1694.Reformat-Phone-Number/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1695.Maximum-Erasure-Value/index.html b/website/public/en/ChapterFour/1600~1699/1695.Maximum-Erasure-Value/index.html index 4418ef7cf..dec746645 100644 --- a/website/public/en/ChapterFour/1600~1699/1695.Maximum-Erasure-Value/index.html +++ b/website/public/en/ChapterFour/1600~1699/1695.Maximum-Erasure-Value/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/1696.Jump-Game-VI/index.html b/website/public/en/ChapterFour/1600~1699/1696.Jump-Game-VI/index.html index 71c7b5c24..2a611aadf 100644 --- a/website/public/en/ChapterFour/1600~1699/1696.Jump-Game-VI/index.html +++ b/website/public/en/ChapterFour/1600~1699/1696.Jump-Game-VI/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1600~1699/index.html b/website/public/en/ChapterFour/1600~1699/index.html index a866bfcdb..3dd493501 100644 --- a/website/public/en/ChapterFour/1600~1699/index.html +++ b/website/public/en/ChapterFour/1600~1699/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1700.Number-of-Students-Unable-to-Eat-Lunch/index.html b/website/public/en/ChapterFour/1700~1799/1700.Number-of-Students-Unable-to-Eat-Lunch/index.html index ecb005e8a..642a7859f 100644 --- a/website/public/en/ChapterFour/1700~1799/1700.Number-of-Students-Unable-to-Eat-Lunch/index.html +++ b/website/public/en/ChapterFour/1700~1799/1700.Number-of-Students-Unable-to-Eat-Lunch/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1704.Determine-if-String-Halves-Are-Alike/index.html b/website/public/en/ChapterFour/1700~1799/1704.Determine-if-String-Halves-Are-Alike/index.html index 4046d71d7..29a1b8ee7 100644 --- a/website/public/en/ChapterFour/1700~1799/1704.Determine-if-String-Halves-Are-Alike/index.html +++ b/website/public/en/ChapterFour/1700~1799/1704.Determine-if-String-Halves-Are-Alike/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1705.Maximum-Number-of-Eaten-Apples/index.html b/website/public/en/ChapterFour/1700~1799/1705.Maximum-Number-of-Eaten-Apples/index.html index 5caa9befb..dc71c0328 100644 --- a/website/public/en/ChapterFour/1700~1799/1705.Maximum-Number-of-Eaten-Apples/index.html +++ b/website/public/en/ChapterFour/1700~1799/1705.Maximum-Number-of-Eaten-Apples/index.html @@ -12416,7 +12416,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1710.Maximum-Units-on-a-Truck/index.html b/website/public/en/ChapterFour/1700~1799/1710.Maximum-Units-on-a-Truck/index.html index 9f6329d67..98d4d2b8b 100644 --- a/website/public/en/ChapterFour/1700~1799/1710.Maximum-Units-on-a-Truck/index.html +++ b/website/public/en/ChapterFour/1700~1799/1710.Maximum-Units-on-a-Truck/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1716.Calculate-Money-in-Leetcode-Bank/index.html b/website/public/en/ChapterFour/1700~1799/1716.Calculate-Money-in-Leetcode-Bank/index.html index e1530df47..3170d9546 100644 --- a/website/public/en/ChapterFour/1700~1799/1716.Calculate-Money-in-Leetcode-Bank/index.html +++ b/website/public/en/ChapterFour/1700~1799/1716.Calculate-Money-in-Leetcode-Bank/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1720.Decode-XORed-Array/index.html b/website/public/en/ChapterFour/1700~1799/1720.Decode-XORed-Array/index.html index 5bc0363a7..6c701ee79 100644 --- a/website/public/en/ChapterFour/1700~1799/1720.Decode-XORed-Array/index.html +++ b/website/public/en/ChapterFour/1700~1799/1720.Decode-XORed-Array/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1721.Swapping-Nodes-in-a-Linked-List/index.html b/website/public/en/ChapterFour/1700~1799/1721.Swapping-Nodes-in-a-Linked-List/index.html index ff2f6439a..db381f0b8 100644 --- a/website/public/en/ChapterFour/1700~1799/1721.Swapping-Nodes-in-a-Linked-List/index.html +++ b/website/public/en/ChapterFour/1700~1799/1721.Swapping-Nodes-in-a-Linked-List/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1725.Number-Of-Rectangles-That-Can-Form-The-Largest-Square/index.html b/website/public/en/ChapterFour/1700~1799/1725.Number-Of-Rectangles-That-Can-Form-The-Largest-Square/index.html index 45281664d..428bc1665 100644 --- a/website/public/en/ChapterFour/1700~1799/1725.Number-Of-Rectangles-That-Can-Form-The-Largest-Square/index.html +++ b/website/public/en/ChapterFour/1700~1799/1725.Number-Of-Rectangles-That-Can-Form-The-Largest-Square/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1732.Find-the-Highest-Altitude/index.html b/website/public/en/ChapterFour/1700~1799/1732.Find-the-Highest-Altitude/index.html index 5f8f73bfb..27e77fb45 100644 --- a/website/public/en/ChapterFour/1700~1799/1732.Find-the-Highest-Altitude/index.html +++ b/website/public/en/ChapterFour/1700~1799/1732.Find-the-Highest-Altitude/index.html @@ -12346,7 +12346,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1734.Decode-XORed-Permutation/index.html b/website/public/en/ChapterFour/1700~1799/1734.Decode-XORed-Permutation/index.html index 3a2dfa3a4..dc51045d9 100644 --- a/website/public/en/ChapterFour/1700~1799/1734.Decode-XORed-Permutation/index.html +++ b/website/public/en/ChapterFour/1700~1799/1734.Decode-XORed-Permutation/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1736.Latest-Time-by-Replacing-Hidden-Digits/index.html b/website/public/en/ChapterFour/1700~1799/1736.Latest-Time-by-Replacing-Hidden-Digits/index.html index 80674cdc4..b2922ce71 100644 --- a/website/public/en/ChapterFour/1700~1799/1736.Latest-Time-by-Replacing-Hidden-Digits/index.html +++ b/website/public/en/ChapterFour/1700~1799/1736.Latest-Time-by-Replacing-Hidden-Digits/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1738.Find-Kth-Largest-XOR-Coordinate-Value/index.html b/website/public/en/ChapterFour/1700~1799/1738.Find-Kth-Largest-XOR-Coordinate-Value/index.html index 9bd800925..ce79316a3 100644 --- a/website/public/en/ChapterFour/1700~1799/1738.Find-Kth-Largest-XOR-Coordinate-Value/index.html +++ b/website/public/en/ChapterFour/1700~1799/1738.Find-Kth-Largest-XOR-Coordinate-Value/index.html @@ -12397,7 +12397,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1742.Maximum-Number-of-Balls-in-a-Box/index.html b/website/public/en/ChapterFour/1700~1799/1742.Maximum-Number-of-Balls-in-a-Box/index.html index c4ecbc3bc..c6022eb25 100644 --- a/website/public/en/ChapterFour/1700~1799/1742.Maximum-Number-of-Balls-in-a-Box/index.html +++ b/website/public/en/ChapterFour/1700~1799/1742.Maximum-Number-of-Balls-in-a-Box/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1744.Can-You-Eat-Your-Favorite-Candy-on-Your-Favorite-Day/index.html b/website/public/en/ChapterFour/1700~1799/1744.Can-You-Eat-Your-Favorite-Candy-on-Your-Favorite-Day/index.html index 5206b52a4..382b692f8 100644 --- a/website/public/en/ChapterFour/1700~1799/1744.Can-You-Eat-Your-Favorite-Candy-on-Your-Favorite-Day/index.html +++ b/website/public/en/ChapterFour/1700~1799/1744.Can-You-Eat-Your-Favorite-Candy-on-Your-Favorite-Day/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1748.Sum-of-Unique-Elements/index.html b/website/public/en/ChapterFour/1700~1799/1748.Sum-of-Unique-Elements/index.html index d53584328..cf64a970d 100644 --- a/website/public/en/ChapterFour/1700~1799/1748.Sum-of-Unique-Elements/index.html +++ b/website/public/en/ChapterFour/1700~1799/1748.Sum-of-Unique-Elements/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1752.Check-if-Array-Is-Sorted-and-Rotated/index.html b/website/public/en/ChapterFour/1700~1799/1752.Check-if-Array-Is-Sorted-and-Rotated/index.html index a8870d16b..33780a567 100644 --- a/website/public/en/ChapterFour/1700~1799/1752.Check-if-Array-Is-Sorted-and-Rotated/index.html +++ b/website/public/en/ChapterFour/1700~1799/1752.Check-if-Array-Is-Sorted-and-Rotated/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1758.Minimum-Changes-To-Make-Alternating-Binary-String/index.html b/website/public/en/ChapterFour/1700~1799/1758.Minimum-Changes-To-Make-Alternating-Binary-String/index.html index 0c758b7a8..1c015ff0b 100644 --- a/website/public/en/ChapterFour/1700~1799/1758.Minimum-Changes-To-Make-Alternating-Binary-String/index.html +++ b/website/public/en/ChapterFour/1700~1799/1758.Minimum-Changes-To-Make-Alternating-Binary-String/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1763.Longest-Nice-Substring/index.html b/website/public/en/ChapterFour/1700~1799/1763.Longest-Nice-Substring/index.html index 343135aed..ee0624227 100644 --- a/website/public/en/ChapterFour/1700~1799/1763.Longest-Nice-Substring/index.html +++ b/website/public/en/ChapterFour/1700~1799/1763.Longest-Nice-Substring/index.html @@ -12426,7 +12426,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/1791.Find-Center-of-Star-Graph/index.html b/website/public/en/ChapterFour/1700~1799/1791.Find-Center-of-Star-Graph/index.html index f11a81186..675cb613d 100644 --- a/website/public/en/ChapterFour/1700~1799/1791.Find-Center-of-Star-Graph/index.html +++ b/website/public/en/ChapterFour/1700~1799/1791.Find-Center-of-Star-Graph/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1700~1799/index.html b/website/public/en/ChapterFour/1700~1799/index.html index ec375b8b7..181a59cf0 100644 --- a/website/public/en/ChapterFour/1700~1799/index.html +++ b/website/public/en/ChapterFour/1700~1799/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1800~1899/1816.Truncate-Sentence/index.html b/website/public/en/ChapterFour/1800~1899/1816.Truncate-Sentence/index.html index 21ac216d9..91d126a60 100644 --- a/website/public/en/ChapterFour/1800~1899/1816.Truncate-Sentence/index.html +++ b/website/public/en/ChapterFour/1800~1899/1816.Truncate-Sentence/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/index.html b/website/public/en/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/index.html index eec1a2727..eaba72f6e 100644 --- a/website/public/en/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/index.html +++ b/website/public/en/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/index.html @@ -12412,7 +12412,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1800~1899/1846.Maximum-Element-After-Decreasing-and-Rearranging/index.html b/website/public/en/ChapterFour/1800~1899/1846.Maximum-Element-After-Decreasing-and-Rearranging/index.html index 22a40316a..505bf3840 100644 --- a/website/public/en/ChapterFour/1800~1899/1846.Maximum-Element-After-Decreasing-and-Rearranging/index.html +++ b/website/public/en/ChapterFour/1800~1899/1846.Maximum-Element-After-Decreasing-and-Rearranging/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1800~1899/1877.Minimize-Maximum-Pair-Sum-in-Array/index.html b/website/public/en/ChapterFour/1800~1899/1877.Minimize-Maximum-Pair-Sum-in-Array/index.html index 90b5680e0..19224c4cc 100644 --- a/website/public/en/ChapterFour/1800~1899/1877.Minimize-Maximum-Pair-Sum-in-Array/index.html +++ b/website/public/en/ChapterFour/1800~1899/1877.Minimize-Maximum-Pair-Sum-in-Array/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1800~1899/index.html b/website/public/en/ChapterFour/1800~1899/index.html index 0c4ca1272..17b5bc4e0 100644 --- a/website/public/en/ChapterFour/1800~1899/index.html +++ b/website/public/en/ChapterFour/1800~1899/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1900~1999/1984.Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores/index.html b/website/public/en/ChapterFour/1900~1999/1984.Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores/index.html index 82e1b0fcd..4b256472e 100644 --- a/website/public/en/ChapterFour/1900~1999/1984.Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores/index.html +++ b/website/public/en/ChapterFour/1900~1999/1984.Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/1900~1999/index.html b/website/public/en/ChapterFour/1900~1999/index.html index 6e8694487..4773c816c 100644 --- a/website/public/en/ChapterFour/1900~1999/index.html +++ b/website/public/en/ChapterFour/1900~1999/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2000~2099/2021.Brightest-Position-on-Street/index.html b/website/public/en/ChapterFour/2000~2099/2021.Brightest-Position-on-Street/index.html index 2ab0a7010..f948b4d92 100644 --- a/website/public/en/ChapterFour/2000~2099/2021.Brightest-Position-on-Street/index.html +++ b/website/public/en/ChapterFour/2000~2099/2021.Brightest-Position-on-Street/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2000~2099/2022.Convert-1D-Array-Into-2D-Array/index.html b/website/public/en/ChapterFour/2000~2099/2022.Convert-1D-Array-Into-2D-Array/index.html index 9b5aad644..b81dd4e26 100644 --- a/website/public/en/ChapterFour/2000~2099/2022.Convert-1D-Array-Into-2D-Array/index.html +++ b/website/public/en/ChapterFour/2000~2099/2022.Convert-1D-Array-Into-2D-Array/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2000~2099/2037.Minimum-Number-of-Moves-to-Seat-Everyone/index.html b/website/public/en/ChapterFour/2000~2099/2037.Minimum-Number-of-Moves-to-Seat-Everyone/index.html index 066966d4c..6dea800cb 100644 --- a/website/public/en/ChapterFour/2000~2099/2037.Minimum-Number-of-Moves-to-Seat-Everyone/index.html +++ b/website/public/en/ChapterFour/2000~2099/2037.Minimum-Number-of-Moves-to-Seat-Everyone/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2000~2099/2038.Remove-Colored-Pieces-if-Both-Neighbors-are-the-Same-Color/index.html b/website/public/en/ChapterFour/2000~2099/2038.Remove-Colored-Pieces-if-Both-Neighbors-are-the-Same-Color/index.html index 3f8a786b9..221301225 100644 --- a/website/public/en/ChapterFour/2000~2099/2038.Remove-Colored-Pieces-if-Both-Neighbors-are-the-Same-Color/index.html +++ b/website/public/en/ChapterFour/2000~2099/2038.Remove-Colored-Pieces-if-Both-Neighbors-are-the-Same-Color/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2000~2099/2043.Simple-Bank-System/index.html b/website/public/en/ChapterFour/2000~2099/2043.Simple-Bank-System/index.html index 207aa569a..52c82b9e2 100644 --- a/website/public/en/ChapterFour/2000~2099/2043.Simple-Bank-System/index.html +++ b/website/public/en/ChapterFour/2000~2099/2043.Simple-Bank-System/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2000~2099/2096.Step-By-Step-Directions-From-a-Binary-Tree-Node-to-Another/index.html b/website/public/en/ChapterFour/2000~2099/2096.Step-By-Step-Directions-From-a-Binary-Tree-Node-to-Another/index.html index adf822dd9..1e23cbb40 100644 --- a/website/public/en/ChapterFour/2000~2099/2096.Step-By-Step-Directions-From-a-Binary-Tree-Node-to-Another/index.html +++ b/website/public/en/ChapterFour/2000~2099/2096.Step-By-Step-Directions-From-a-Binary-Tree-Node-to-Another/index.html @@ -12435,7 +12435,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2000~2099/index.html b/website/public/en/ChapterFour/2000~2099/index.html index 13eb20478..82f01c898 100644 --- a/website/public/en/ChapterFour/2000~2099/index.html +++ b/website/public/en/ChapterFour/2000~2099/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2164.Sort-Even-and-Odd-Indices-Independently/index.html b/website/public/en/ChapterFour/2100~2199/2164.Sort-Even-and-Odd-Indices-Independently/index.html index 7bc5570d1..7cb976578 100644 --- a/website/public/en/ChapterFour/2100~2199/2164.Sort-Even-and-Odd-Indices-Independently/index.html +++ b/website/public/en/ChapterFour/2100~2199/2164.Sort-Even-and-Odd-Indices-Independently/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2165.Smallest-Value-of-the-Rearranged-Number/index.html b/website/public/en/ChapterFour/2100~2199/2165.Smallest-Value-of-the-Rearranged-Number/index.html index 4fe8eebdd..101fcb6cf 100644 --- a/website/public/en/ChapterFour/2100~2199/2165.Smallest-Value-of-the-Rearranged-Number/index.html +++ b/website/public/en/ChapterFour/2100~2199/2165.Smallest-Value-of-the-Rearranged-Number/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2166.Design-Bitset/index.html b/website/public/en/ChapterFour/2100~2199/2166.Design-Bitset/index.html index 9c5782ba2..e8f9c31fc 100644 --- a/website/public/en/ChapterFour/2100~2199/2166.Design-Bitset/index.html +++ b/website/public/en/ChapterFour/2100~2199/2166.Design-Bitset/index.html @@ -12454,7 +12454,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2167.Minimum-Time-to-Remove-All-Cars-Containing-Illegal-Goods/index.html b/website/public/en/ChapterFour/2100~2199/2167.Minimum-Time-to-Remove-All-Cars-Containing-Illegal-Goods/index.html index 435363b1a..5826d22c4 100644 --- a/website/public/en/ChapterFour/2100~2199/2167.Minimum-Time-to-Remove-All-Cars-Containing-Illegal-Goods/index.html +++ b/website/public/en/ChapterFour/2100~2199/2167.Minimum-Time-to-Remove-All-Cars-Containing-Illegal-Goods/index.html @@ -12455,7 +12455,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2169.Count-Operations-to-Obtain-Zero/index.html b/website/public/en/ChapterFour/2100~2199/2169.Count-Operations-to-Obtain-Zero/index.html index c0073fcdf..a43c50bf6 100644 --- a/website/public/en/ChapterFour/2100~2199/2169.Count-Operations-to-Obtain-Zero/index.html +++ b/website/public/en/ChapterFour/2100~2199/2169.Count-Operations-to-Obtain-Zero/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2170.Minimum-Operations-to-Make-the-Array-Alternating/index.html b/website/public/en/ChapterFour/2100~2199/2170.Minimum-Operations-to-Make-the-Array-Alternating/index.html index 6ef4141f4..11bb263ac 100644 --- a/website/public/en/ChapterFour/2100~2199/2170.Minimum-Operations-to-Make-the-Array-Alternating/index.html +++ b/website/public/en/ChapterFour/2100~2199/2170.Minimum-Operations-to-Make-the-Array-Alternating/index.html @@ -12421,7 +12421,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2171.Removing-Minimum-Number-of-Magic-Beans/index.html b/website/public/en/ChapterFour/2100~2199/2171.Removing-Minimum-Number-of-Magic-Beans/index.html index de4be9941..1fbd98c89 100644 --- a/website/public/en/ChapterFour/2100~2199/2171.Removing-Minimum-Number-of-Magic-Beans/index.html +++ b/website/public/en/ChapterFour/2100~2199/2171.Removing-Minimum-Number-of-Magic-Beans/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2180.Count-Integers-With-Even-Digit-Sum/index.html b/website/public/en/ChapterFour/2100~2199/2180.Count-Integers-With-Even-Digit-Sum/index.html index cf3679466..34bbc5b9c 100644 --- a/website/public/en/ChapterFour/2100~2199/2180.Count-Integers-With-Even-Digit-Sum/index.html +++ b/website/public/en/ChapterFour/2100~2199/2180.Count-Integers-With-Even-Digit-Sum/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2181.Merge-Nodes-in-Between-Zeros/index.html b/website/public/en/ChapterFour/2100~2199/2181.Merge-Nodes-in-Between-Zeros/index.html index a08824378..40033ef37 100644 --- a/website/public/en/ChapterFour/2100~2199/2181.Merge-Nodes-in-Between-Zeros/index.html +++ b/website/public/en/ChapterFour/2100~2199/2181.Merge-Nodes-in-Between-Zeros/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2182.Construct-String-With-Repeat-Limit/index.html b/website/public/en/ChapterFour/2100~2199/2182.Construct-String-With-Repeat-Limit/index.html index 512e3ae0e..03000b1a1 100644 --- a/website/public/en/ChapterFour/2100~2199/2182.Construct-String-With-Repeat-Limit/index.html +++ b/website/public/en/ChapterFour/2100~2199/2182.Construct-String-With-Repeat-Limit/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/2183.Count-Array-Pairs-Divisible-by-K/index.html b/website/public/en/ChapterFour/2100~2199/2183.Count-Array-Pairs-Divisible-by-K/index.html index 7575f30bd..6817341a5 100644 --- a/website/public/en/ChapterFour/2100~2199/2183.Count-Array-Pairs-Divisible-by-K/index.html +++ b/website/public/en/ChapterFour/2100~2199/2183.Count-Array-Pairs-Divisible-by-K/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2100~2199/index.html b/website/public/en/ChapterFour/2100~2199/index.html index dcac37527..2f5c3c631 100644 --- a/website/public/en/ChapterFour/2100~2199/index.html +++ b/website/public/en/ChapterFour/2100~2199/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/2200~2299/index.html b/website/public/en/ChapterFour/2200~2299/index.html index 8e147ed9a..902c878ac 100644 --- a/website/public/en/ChapterFour/2200~2299/index.html +++ b/website/public/en/ChapterFour/2200~2299/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterFour/index.html b/website/public/en/ChapterFour/index.html index 7f7806e1b..44fb5ad69 100644 --- a/website/public/en/ChapterFour/index.html +++ b/website/public/en/ChapterFour/index.html @@ -12286,7 +12286,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterOne/Algorithm/index.html b/website/public/en/ChapterOne/Algorithm/index.html index ab6557355..9590917d1 100644 --- a/website/public/en/ChapterOne/Algorithm/index.html +++ b/website/public/en/ChapterOne/Algorithm/index.html @@ -12379,7 +12379,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterOne/Data_Structure/index.html b/website/public/en/ChapterOne/Data_Structure/index.html index 82946977c..4581e7f8b 100644 --- a/website/public/en/ChapterOne/Data_Structure/index.html +++ b/website/public/en/ChapterOne/Data_Structure/index.html @@ -12366,7 +12366,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterOne/Time_Complexity/index.html b/website/public/en/ChapterOne/Time_Complexity/index.html index b5b94408a..af59f09c4 100644 --- a/website/public/en/ChapterOne/Time_Complexity/index.html +++ b/website/public/en/ChapterOne/Time_Complexity/index.html @@ -12459,7 +12459,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterOne/index.html b/website/public/en/ChapterOne/index.html index f8bddb5d5..a46036c8f 100644 --- a/website/public/en/ChapterOne/index.html +++ b/website/public/en/ChapterOne/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterThree/Binary_Indexed_Tree/index.html b/website/public/en/ChapterThree/Binary_Indexed_Tree/index.html index ffb496e90..dc0d1b424 100644 --- a/website/public/en/ChapterThree/Binary_Indexed_Tree/index.html +++ b/website/public/en/ChapterThree/Binary_Indexed_Tree/index.html @@ -13040,7 +13040,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterThree/LFUCache/index.html b/website/public/en/ChapterThree/LFUCache/index.html index 7bf0435af..e2d7edadc 100644 --- a/website/public/en/ChapterThree/LFUCache/index.html +++ b/website/public/en/ChapterThree/LFUCache/index.html @@ -12601,7 +12601,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterThree/LRUCache/index.html b/website/public/en/ChapterThree/LRUCache/index.html index 4e4f3ea5f..09da02b4c 100644 --- a/website/public/en/ChapterThree/LRUCache/index.html +++ b/website/public/en/ChapterThree/LRUCache/index.html @@ -12533,7 +12533,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterThree/Segment_Tree/index.html b/website/public/en/ChapterThree/Segment_Tree/index.html index 72c5fe37e..c15e04366 100644 --- a/website/public/en/ChapterThree/Segment_Tree/index.html +++ b/website/public/en/ChapterThree/Segment_Tree/index.html @@ -12824,7 +12824,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterThree/UnionFind/index.html b/website/public/en/ChapterThree/UnionFind/index.html index 7b47362c7..99b796481 100644 --- a/website/public/en/ChapterThree/UnionFind/index.html +++ b/website/public/en/ChapterThree/UnionFind/index.html @@ -12423,7 +12423,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterThree/index.html b/website/public/en/ChapterThree/index.html index 545af8a10..19dd55138 100644 --- a/website/public/en/ChapterThree/index.html +++ b/website/public/en/ChapterThree/index.html @@ -12283,7 +12283,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Array/index.html b/website/public/en/ChapterTwo/Array/index.html index d7a28d6ef..5099ff308 100644 --- a/website/public/en/ChapterTwo/Array/index.html +++ b/website/public/en/ChapterTwo/Array/index.html @@ -16880,7 +16880,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Backtracking/index.html b/website/public/en/ChapterTwo/Backtracking/index.html index 89675e57d..e51187f76 100644 --- a/website/public/en/ChapterTwo/Backtracking/index.html +++ b/website/public/en/ChapterTwo/Backtracking/index.html @@ -12822,7 +12822,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Binary_Indexed_Tree/index.html b/website/public/en/ChapterTwo/Binary_Indexed_Tree/index.html index 84e9c8b33..3b819bb5e 100644 --- a/website/public/en/ChapterTwo/Binary_Indexed_Tree/index.html +++ b/website/public/en/ChapterTwo/Binary_Indexed_Tree/index.html @@ -12383,7 +12383,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Binary_Search/index.html b/website/public/en/ChapterTwo/Binary_Search/index.html index 6d77e5354..5981d3f2b 100644 --- a/website/public/en/ChapterTwo/Binary_Search/index.html +++ b/website/public/en/ChapterTwo/Binary_Search/index.html @@ -13351,7 +13351,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Bit_Manipulation/index.html b/website/public/en/ChapterTwo/Bit_Manipulation/index.html index f180829fb..ae3d5eb8e 100644 --- a/website/public/en/ChapterTwo/Bit_Manipulation/index.html +++ b/website/public/en/ChapterTwo/Bit_Manipulation/index.html @@ -12981,7 +12981,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Breadth_First_Search/index.html b/website/public/en/ChapterTwo/Breadth_First_Search/index.html index 69339c4c4..56864dcb0 100644 --- a/website/public/en/ChapterTwo/Breadth_First_Search/index.html +++ b/website/public/en/ChapterTwo/Breadth_First_Search/index.html @@ -13184,7 +13184,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Depth_First_Search/index.html b/website/public/en/ChapterTwo/Depth_First_Search/index.html index 8e004af72..16f354bdf 100644 --- a/website/public/en/ChapterTwo/Depth_First_Search/index.html +++ b/website/public/en/ChapterTwo/Depth_First_Search/index.html @@ -13481,7 +13481,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Dynamic_Programming/index.html b/website/public/en/ChapterTwo/Dynamic_Programming/index.html index 23cdcd730..993dcbee0 100644 --- a/website/public/en/ChapterTwo/Dynamic_Programming/index.html +++ b/website/public/en/ChapterTwo/Dynamic_Programming/index.html @@ -13382,7 +13382,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Hash_Table/index.html b/website/public/en/ChapterTwo/Hash_Table/index.html index 084da8639..b78bdb007 100644 --- a/website/public/en/ChapterTwo/Hash_Table/index.html +++ b/website/public/en/ChapterTwo/Hash_Table/index.html @@ -14075,7 +14075,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Linked_List/index.html b/website/public/en/ChapterTwo/Linked_List/index.html index d05c40059..db635456e 100644 --- a/website/public/en/ChapterTwo/Linked_List/index.html +++ b/website/public/en/ChapterTwo/Linked_List/index.html @@ -12800,7 +12800,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Math/index.html b/website/public/en/ChapterTwo/Math/index.html index 77ea40410..44ce9dac9 100644 --- a/website/public/en/ChapterTwo/Math/index.html +++ b/website/public/en/ChapterTwo/Math/index.html @@ -13855,7 +13855,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Segment_Tree/index.html b/website/public/en/ChapterTwo/Segment_Tree/index.html index 748b6089c..4d69055c4 100644 --- a/website/public/en/ChapterTwo/Segment_Tree/index.html +++ b/website/public/en/ChapterTwo/Segment_Tree/index.html @@ -12476,7 +12476,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Sliding_Window/index.html b/website/public/en/ChapterTwo/Sliding_Window/index.html index 65ff36c16..6a35093e3 100644 --- a/website/public/en/ChapterTwo/Sliding_Window/index.html +++ b/website/public/en/ChapterTwo/Sliding_Window/index.html @@ -12709,7 +12709,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Sorting/index.html b/website/public/en/ChapterTwo/Sorting/index.html index 536a0917a..bb954bd92 100644 --- a/website/public/en/ChapterTwo/Sorting/index.html +++ b/website/public/en/ChapterTwo/Sorting/index.html @@ -13502,7 +13502,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Stack/index.html b/website/public/en/ChapterTwo/Stack/index.html index 70d305d86..56e9799ef 100644 --- a/website/public/en/ChapterTwo/Stack/index.html +++ b/website/public/en/ChapterTwo/Stack/index.html @@ -12939,7 +12939,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/String/index.html b/website/public/en/ChapterTwo/String/index.html index 5f7bcfb9b..5e82d8722 100644 --- a/website/public/en/ChapterTwo/String/index.html +++ b/website/public/en/ChapterTwo/String/index.html @@ -14284,7 +14284,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Tree/index.html b/website/public/en/ChapterTwo/Tree/index.html index d6ad65897..fe79fdf7a 100644 --- a/website/public/en/ChapterTwo/Tree/index.html +++ b/website/public/en/ChapterTwo/Tree/index.html @@ -13228,7 +13228,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Two_Pointers/index.html b/website/public/en/ChapterTwo/Two_Pointers/index.html index 15ce32612..c9bcc436c 100644 --- a/website/public/en/ChapterTwo/Two_Pointers/index.html +++ b/website/public/en/ChapterTwo/Two_Pointers/index.html @@ -13162,7 +13162,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/Union_Find/index.html b/website/public/en/ChapterTwo/Union_Find/index.html index ec2f8f77c..5ad31e225 100644 --- a/website/public/en/ChapterTwo/Union_Find/index.html +++ b/website/public/en/ChapterTwo/Union_Find/index.html @@ -12601,7 +12601,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/ChapterTwo/index.html b/website/public/en/ChapterTwo/index.html index e716da75d..cf165cdf8 100644 --- a/website/public/en/ChapterTwo/index.html +++ b/website/public/en/ChapterTwo/index.html @@ -12286,7 +12286,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/categories/index.html b/website/public/en/categories/index.html index 8115dd569..7722a966f 100644 --- a/website/public/en/categories/index.html +++ b/website/public/en/categories/index.html @@ -12278,7 +12278,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/index.html b/website/public/en/index.html index 189caf9a1..18a01a1af 100644 --- a/website/public/en/index.html +++ b/website/public/en/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/en/tags/index.html b/website/public/en/tags/index.html index 9e93228f1..20acba9c5 100644 --- a/website/public/en/tags/index.html +++ b/website/public/en/tags/index.html @@ -12278,7 +12278,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/sw.js b/website/public/sw.js new file mode 100644 index 000000000..ff3a148cb --- /dev/null +++ b/website/public/sw.js @@ -0,0 +1,51 @@ +const cacheName = self.location.pathname +const pages = [ + +]; + +self.addEventListener("install", function (event) { + self.skipWaiting(); + + caches.open(cacheName).then((cache) => { + return cache.addAll(pages); + }); +}); + +self.addEventListener("fetch", (event) => { + const request = event.request; + if (request.method !== "GET") { + return; + } + + /** + * @param {Response} response + * @returns {Promise} + */ + function saveToCache(response) { + if (cacheable(response)) { + return caches + .open(cacheName) + .then((cache) => cache.put(request, response.clone())) + .then(() => response); + } else { + return response; + } + } + + /** + * @param {Error} error + */ + function serveFromCache(error) { + return caches.open(cacheName).then((cache) => cache.match(request.url)); + } + + /** + * @param {Response} response + * @returns {Boolean} + */ + function cacheable(response) { + return response.type === "basic" && response.ok && !response.headers.has("Content-Disposition") + } + + event.respondWith(fetch(request).then(saveToCache).catch(serveFromCache)); +}); diff --git a/website/public/sw.min.f4d2776936ea9603d5b4d06bf489597dd2355c0a24f090e9e6dc2679587a2034.js b/website/public/sw.min.f4d2776936ea9603d5b4d06bf489597dd2355c0a24f090e9e6dc2679587a2034.js new file mode 100644 index 000000000..5d68c1261 --- /dev/null +++ b/website/public/sw.min.f4d2776936ea9603d5b4d06bf489597dd2355c0a24f090e9e6dc2679587a2034.js @@ -0,0 +1 @@ +if(navigator.serviceWorker){navigator.serviceWorker.register("/leetcode/sw.js",{scope:"/leetcode/"});} \ No newline at end of file diff --git a/website/public/zh/ChapterFour/0001~0099/0001.Two-Sum/index.html b/website/public/zh/ChapterFour/0001~0099/0001.Two-Sum/index.html index c344e6a70..4e1709489 100644 --- a/website/public/zh/ChapterFour/0001~0099/0001.Two-Sum/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0001.Two-Sum/index.html @@ -12345,7 +12345,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0002.Add-Two-Numbers/index.html b/website/public/zh/ChapterFour/0001~0099/0002.Add-Two-Numbers/index.html index 9d9597151..5aaba2338 100644 --- a/website/public/zh/ChapterFour/0001~0099/0002.Add-Two-Numbers/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0002.Add-Two-Numbers/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0003.Longest-Substring-Without-Repeating-Characters/index.html b/website/public/zh/ChapterFour/0001~0099/0003.Longest-Substring-Without-Repeating-Characters/index.html index 97506b4a8..dcc987d58 100644 --- a/website/public/zh/ChapterFour/0001~0099/0003.Longest-Substring-Without-Repeating-Characters/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0003.Longest-Substring-Without-Repeating-Characters/index.html @@ -12416,7 +12416,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0004.Median-of-Two-Sorted-Arrays/index.html b/website/public/zh/ChapterFour/0001~0099/0004.Median-of-Two-Sorted-Arrays/index.html index 49d2fc258..48cd67863 100644 --- a/website/public/zh/ChapterFour/0001~0099/0004.Median-of-Two-Sorted-Arrays/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0004.Median-of-Two-Sorted-Arrays/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0005.Longest-Palindromic-Substring/index.html b/website/public/zh/ChapterFour/0001~0099/0005.Longest-Palindromic-Substring/index.html index 10e8185cf..4c87da3aa 100644 --- a/website/public/zh/ChapterFour/0001~0099/0005.Longest-Palindromic-Substring/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0005.Longest-Palindromic-Substring/index.html @@ -12492,7 +12492,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0006.ZigZag-Conversion/index.html b/website/public/zh/ChapterFour/0001~0099/0006.ZigZag-Conversion/index.html index ae7ce8e1d..f2a51f50d 100644 --- a/website/public/zh/ChapterFour/0001~0099/0006.ZigZag-Conversion/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0006.ZigZag-Conversion/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0007.Reverse-Integer/index.html b/website/public/zh/ChapterFour/0001~0099/0007.Reverse-Integer/index.html index 8a8f4bb13..2dc6f7397 100644 --- a/website/public/zh/ChapterFour/0001~0099/0007.Reverse-Integer/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0007.Reverse-Integer/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0008.String-to-Integer-atoi/index.html b/website/public/zh/ChapterFour/0001~0099/0008.String-to-Integer-atoi/index.html index 81f1e57ff..e66878171 100644 --- a/website/public/zh/ChapterFour/0001~0099/0008.String-to-Integer-atoi/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0008.String-to-Integer-atoi/index.html @@ -12474,7 +12474,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0009.Palindrome-Number/index.html b/website/public/zh/ChapterFour/0001~0099/0009.Palindrome-Number/index.html index c6a55cfbd..605d303bc 100644 --- a/website/public/zh/ChapterFour/0001~0099/0009.Palindrome-Number/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0009.Palindrome-Number/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0011.Container-With-Most-Water/index.html b/website/public/zh/ChapterFour/0001~0099/0011.Container-With-Most-Water/index.html index bdb20a432..962a1d3e5 100644 --- a/website/public/zh/ChapterFour/0001~0099/0011.Container-With-Most-Water/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0011.Container-With-Most-Water/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0012.Integer-to-Roman/index.html b/website/public/zh/ChapterFour/0001~0099/0012.Integer-to-Roman/index.html index 95d9c47cb..684546139 100644 --- a/website/public/zh/ChapterFour/0001~0099/0012.Integer-to-Roman/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0012.Integer-to-Roman/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0013.Roman-to-Integer/index.html b/website/public/zh/ChapterFour/0001~0099/0013.Roman-to-Integer/index.html index 32a3af5db..ad0af90f0 100644 --- a/website/public/zh/ChapterFour/0001~0099/0013.Roman-to-Integer/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0013.Roman-to-Integer/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0014.Longest-Common-Prefix/index.html b/website/public/zh/ChapterFour/0001~0099/0014.Longest-Common-Prefix/index.html index 3451bd3b8..3c7d21c76 100644 --- a/website/public/zh/ChapterFour/0001~0099/0014.Longest-Common-Prefix/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0014.Longest-Common-Prefix/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0015.3Sum/index.html b/website/public/zh/ChapterFour/0001~0099/0015.3Sum/index.html index c1ee535f6..f9c11ac8f 100644 --- a/website/public/zh/ChapterFour/0001~0099/0015.3Sum/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0015.3Sum/index.html @@ -12412,7 +12412,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0016.3Sum-Closest/index.html b/website/public/zh/ChapterFour/0001~0099/0016.3Sum-Closest/index.html index 559f38198..c454008cd 100644 --- a/website/public/zh/ChapterFour/0001~0099/0016.3Sum-Closest/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0016.3Sum-Closest/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0017.Letter-Combinations-of-a-Phone-Number/index.html b/website/public/zh/ChapterFour/0001~0099/0017.Letter-Combinations-of-a-Phone-Number/index.html index 327bac865..4fc93d99a 100644 --- a/website/public/zh/ChapterFour/0001~0099/0017.Letter-Combinations-of-a-Phone-Number/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0017.Letter-Combinations-of-a-Phone-Number/index.html @@ -12440,7 +12440,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0018.4Sum/index.html b/website/public/zh/ChapterFour/0001~0099/0018.4Sum/index.html index 192eceb38..c15fd6ce9 100644 --- a/website/public/zh/ChapterFour/0001~0099/0018.4Sum/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0018.4Sum/index.html @@ -12476,7 +12476,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0019.Remove-Nth-Node-From-End-of-List/index.html b/website/public/zh/ChapterFour/0001~0099/0019.Remove-Nth-Node-From-End-of-List/index.html index 545b78f69..c36504f44 100644 --- a/website/public/zh/ChapterFour/0001~0099/0019.Remove-Nth-Node-From-End-of-List/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0019.Remove-Nth-Node-From-End-of-List/index.html @@ -12418,7 +12418,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0020.Valid-Parentheses/index.html b/website/public/zh/ChapterFour/0001~0099/0020.Valid-Parentheses/index.html index beeaa52db..501508ddf 100644 --- a/website/public/zh/ChapterFour/0001~0099/0020.Valid-Parentheses/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0020.Valid-Parentheses/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0021.Merge-Two-Sorted-Lists/index.html b/website/public/zh/ChapterFour/0001~0099/0021.Merge-Two-Sorted-Lists/index.html index bc26fc80f..337fa56f9 100644 --- a/website/public/zh/ChapterFour/0001~0099/0021.Merge-Two-Sorted-Lists/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0021.Merge-Two-Sorted-Lists/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0022.Generate-Parentheses/index.html b/website/public/zh/ChapterFour/0001~0099/0022.Generate-Parentheses/index.html index 335730507..8075df553 100644 --- a/website/public/zh/ChapterFour/0001~0099/0022.Generate-Parentheses/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0022.Generate-Parentheses/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0023.Merge-k-Sorted-Lists/index.html b/website/public/zh/ChapterFour/0001~0099/0023.Merge-k-Sorted-Lists/index.html index a32da6675..dc6333574 100644 --- a/website/public/zh/ChapterFour/0001~0099/0023.Merge-k-Sorted-Lists/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0023.Merge-k-Sorted-Lists/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0024.Swap-Nodes-in-Pairs/index.html b/website/public/zh/ChapterFour/0001~0099/0024.Swap-Nodes-in-Pairs/index.html index 194aba00e..b4597b943 100644 --- a/website/public/zh/ChapterFour/0001~0099/0024.Swap-Nodes-in-Pairs/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0024.Swap-Nodes-in-Pairs/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0025.Reverse-Nodes-in-k-Group/index.html b/website/public/zh/ChapterFour/0001~0099/0025.Reverse-Nodes-in-k-Group/index.html index 8b12e9d90..086fc7225 100644 --- a/website/public/zh/ChapterFour/0001~0099/0025.Reverse-Nodes-in-k-Group/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0025.Reverse-Nodes-in-k-Group/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0026.Remove-Duplicates-from-Sorted-Array/index.html b/website/public/zh/ChapterFour/0001~0099/0026.Remove-Duplicates-from-Sorted-Array/index.html index 291c7a21b..65a791bdf 100644 --- a/website/public/zh/ChapterFour/0001~0099/0026.Remove-Duplicates-from-Sorted-Array/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0026.Remove-Duplicates-from-Sorted-Array/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0027.Remove-Element/index.html b/website/public/zh/ChapterFour/0001~0099/0027.Remove-Element/index.html index 0d84508c6..34f5b217f 100644 --- a/website/public/zh/ChapterFour/0001~0099/0027.Remove-Element/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0027.Remove-Element/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0028.Find-the-Index-of-the-First-Occurrence-in-a-String/index.html b/website/public/zh/ChapterFour/0001~0099/0028.Find-the-Index-of-the-First-Occurrence-in-a-String/index.html index 661c3e583..f36e7933a 100644 --- a/website/public/zh/ChapterFour/0001~0099/0028.Find-the-Index-of-the-First-Occurrence-in-a-String/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0028.Find-the-Index-of-the-First-Occurrence-in-a-String/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0029.Divide-Two-Integers/index.html b/website/public/zh/ChapterFour/0001~0099/0029.Divide-Two-Integers/index.html index 2c8cdc005..cf47b7c3c 100644 --- a/website/public/zh/ChapterFour/0001~0099/0029.Divide-Two-Integers/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0029.Divide-Two-Integers/index.html @@ -12455,7 +12455,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0030.Substring-with-Concatenation-of-All-Words/index.html b/website/public/zh/ChapterFour/0001~0099/0030.Substring-with-Concatenation-of-All-Words/index.html index c50f19575..2bfaa6b84 100644 --- a/website/public/zh/ChapterFour/0001~0099/0030.Substring-with-Concatenation-of-All-Words/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0030.Substring-with-Concatenation-of-All-Words/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0031.Next-Permutation/index.html b/website/public/zh/ChapterFour/0001~0099/0031.Next-Permutation/index.html index 493104688..abfd4f9bc 100644 --- a/website/public/zh/ChapterFour/0001~0099/0031.Next-Permutation/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0031.Next-Permutation/index.html @@ -12422,7 +12422,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0032.Longest-Valid-Parentheses/index.html b/website/public/zh/ChapterFour/0001~0099/0032.Longest-Valid-Parentheses/index.html index f9b924bdf..88da6f0d0 100644 --- a/website/public/zh/ChapterFour/0001~0099/0032.Longest-Valid-Parentheses/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0032.Longest-Valid-Parentheses/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0033.Search-in-Rotated-Sorted-Array/index.html b/website/public/zh/ChapterFour/0001~0099/0033.Search-in-Rotated-Sorted-Array/index.html index 5a5ba002b..277ff8226 100644 --- a/website/public/zh/ChapterFour/0001~0099/0033.Search-in-Rotated-Sorted-Array/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0033.Search-in-Rotated-Sorted-Array/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0034.Find-First-and-Last-Position-of-Element-in-Sorted-Array/index.html b/website/public/zh/ChapterFour/0001~0099/0034.Find-First-and-Last-Position-of-Element-in-Sorted-Array/index.html index 6ee2b8cd4..85e902a29 100644 --- a/website/public/zh/ChapterFour/0001~0099/0034.Find-First-and-Last-Position-of-Element-in-Sorted-Array/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0034.Find-First-and-Last-Position-of-Element-in-Sorted-Array/index.html @@ -12427,7 +12427,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0035.Search-Insert-Position/index.html b/website/public/zh/ChapterFour/0001~0099/0035.Search-Insert-Position/index.html index 20bcf5c75..fed876035 100644 --- a/website/public/zh/ChapterFour/0001~0099/0035.Search-Insert-Position/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0035.Search-Insert-Position/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0036.Valid-Sudoku/index.html b/website/public/zh/ChapterFour/0001~0099/0036.Valid-Sudoku/index.html index 17d72411e..ac4a18913 100644 --- a/website/public/zh/ChapterFour/0001~0099/0036.Valid-Sudoku/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0036.Valid-Sudoku/index.html @@ -12461,7 +12461,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0037.Sudoku-Solver/index.html b/website/public/zh/ChapterFour/0001~0099/0037.Sudoku-Solver/index.html index 9ee635e18..b2ed3f7d9 100644 --- a/website/public/zh/ChapterFour/0001~0099/0037.Sudoku-Solver/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0037.Sudoku-Solver/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0039.Combination-Sum/index.html b/website/public/zh/ChapterFour/0001~0099/0039.Combination-Sum/index.html index 5521aef96..f80f88069 100644 --- a/website/public/zh/ChapterFour/0001~0099/0039.Combination-Sum/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0039.Combination-Sum/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0040.Combination-Sum-II/index.html b/website/public/zh/ChapterFour/0001~0099/0040.Combination-Sum-II/index.html index 627bd7486..f1ab2d5df 100644 --- a/website/public/zh/ChapterFour/0001~0099/0040.Combination-Sum-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0040.Combination-Sum-II/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0041.First-Missing-Positive/index.html b/website/public/zh/ChapterFour/0001~0099/0041.First-Missing-Positive/index.html index 0aa4c48d6..f2be36a78 100644 --- a/website/public/zh/ChapterFour/0001~0099/0041.First-Missing-Positive/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0041.First-Missing-Positive/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0042.Trapping-Rain-Water/index.html b/website/public/zh/ChapterFour/0001~0099/0042.Trapping-Rain-Water/index.html index e4e7e3d5d..86f5e8ad9 100644 --- a/website/public/zh/ChapterFour/0001~0099/0042.Trapping-Rain-Water/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0042.Trapping-Rain-Water/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0043.Multiply-Strings/index.html b/website/public/zh/ChapterFour/0001~0099/0043.Multiply-Strings/index.html index 5f7dd64ec..2a8e71ec6 100644 --- a/website/public/zh/ChapterFour/0001~0099/0043.Multiply-Strings/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0043.Multiply-Strings/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0045.Jump-Game-II/index.html b/website/public/zh/ChapterFour/0001~0099/0045.Jump-Game-II/index.html index 9bce52d65..1a23b0367 100644 --- a/website/public/zh/ChapterFour/0001~0099/0045.Jump-Game-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0045.Jump-Game-II/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0046.Permutations/index.html b/website/public/zh/ChapterFour/0001~0099/0046.Permutations/index.html index 374490fe8..1598658a0 100644 --- a/website/public/zh/ChapterFour/0001~0099/0046.Permutations/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0046.Permutations/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0047.Permutations-II/index.html b/website/public/zh/ChapterFour/0001~0099/0047.Permutations-II/index.html index 9117165e8..88c9b2737 100644 --- a/website/public/zh/ChapterFour/0001~0099/0047.Permutations-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0047.Permutations-II/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0048.Rotate-Image/index.html b/website/public/zh/ChapterFour/0001~0099/0048.Rotate-Image/index.html index f195e109a..f20a7fbbc 100644 --- a/website/public/zh/ChapterFour/0001~0099/0048.Rotate-Image/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0048.Rotate-Image/index.html @@ -12461,7 +12461,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0049.Group-Anagrams/index.html b/website/public/zh/ChapterFour/0001~0099/0049.Group-Anagrams/index.html index 7624db410..fbba6961a 100644 --- a/website/public/zh/ChapterFour/0001~0099/0049.Group-Anagrams/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0049.Group-Anagrams/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0050.Powx-n/index.html b/website/public/zh/ChapterFour/0001~0099/0050.Powx-n/index.html index d4d0f8f76..8da76ed7a 100644 --- a/website/public/zh/ChapterFour/0001~0099/0050.Powx-n/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0050.Powx-n/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0051.N-Queens/index.html b/website/public/zh/ChapterFour/0001~0099/0051.N-Queens/index.html index 74fe0f55c..9bd3b2208 100644 --- a/website/public/zh/ChapterFour/0001~0099/0051.N-Queens/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0051.N-Queens/index.html @@ -12441,7 +12441,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0052.N-Queens-II/index.html b/website/public/zh/ChapterFour/0001~0099/0052.N-Queens-II/index.html index bdeea9d68..58088240a 100644 --- a/website/public/zh/ChapterFour/0001~0099/0052.N-Queens-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0052.N-Queens-II/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0053.Maximum-Subarray/index.html b/website/public/zh/ChapterFour/0001~0099/0053.Maximum-Subarray/index.html index be639fac7..b336e8652 100644 --- a/website/public/zh/ChapterFour/0001~0099/0053.Maximum-Subarray/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0053.Maximum-Subarray/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0054.Spiral-Matrix/index.html b/website/public/zh/ChapterFour/0001~0099/0054.Spiral-Matrix/index.html index d5b64ef0e..34ed416cb 100644 --- a/website/public/zh/ChapterFour/0001~0099/0054.Spiral-Matrix/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0054.Spiral-Matrix/index.html @@ -12463,7 +12463,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0055.Jump-Game/index.html b/website/public/zh/ChapterFour/0001~0099/0055.Jump-Game/index.html index d79258833..d748ba2f7 100644 --- a/website/public/zh/ChapterFour/0001~0099/0055.Jump-Game/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0055.Jump-Game/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0056.Merge-Intervals/index.html b/website/public/zh/ChapterFour/0001~0099/0056.Merge-Intervals/index.html index a27bf2d04..55a7e6afb 100644 --- a/website/public/zh/ChapterFour/0001~0099/0056.Merge-Intervals/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0056.Merge-Intervals/index.html @@ -12408,7 +12408,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0057.Insert-Interval/index.html b/website/public/zh/ChapterFour/0001~0099/0057.Insert-Interval/index.html index 42c30acd8..5a8957111 100644 --- a/website/public/zh/ChapterFour/0001~0099/0057.Insert-Interval/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0057.Insert-Interval/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0058.Length-of-Last-Word/index.html b/website/public/zh/ChapterFour/0001~0099/0058.Length-of-Last-Word/index.html index f1077d872..c71e0ff8e 100644 --- a/website/public/zh/ChapterFour/0001~0099/0058.Length-of-Last-Word/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0058.Length-of-Last-Word/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0059.Spiral-Matrix-II/index.html b/website/public/zh/ChapterFour/0001~0099/0059.Spiral-Matrix-II/index.html index f9cda7234..83ea81ac0 100644 --- a/website/public/zh/ChapterFour/0001~0099/0059.Spiral-Matrix-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0059.Spiral-Matrix-II/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0060.Permutation-Sequence/index.html b/website/public/zh/ChapterFour/0001~0099/0060.Permutation-Sequence/index.html index 8e8ead9c6..18f46c093 100644 --- a/website/public/zh/ChapterFour/0001~0099/0060.Permutation-Sequence/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0060.Permutation-Sequence/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0061.Rotate-List/index.html b/website/public/zh/ChapterFour/0001~0099/0061.Rotate-List/index.html index 3850211cf..ace035b1f 100644 --- a/website/public/zh/ChapterFour/0001~0099/0061.Rotate-List/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0061.Rotate-List/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0062.Unique-Paths/index.html b/website/public/zh/ChapterFour/0001~0099/0062.Unique-Paths/index.html index 53eedf217..d374fa322 100644 --- a/website/public/zh/ChapterFour/0001~0099/0062.Unique-Paths/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0062.Unique-Paths/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0063.Unique-Paths-II/index.html b/website/public/zh/ChapterFour/0001~0099/0063.Unique-Paths-II/index.html index c69f8abad..8f77d270f 100644 --- a/website/public/zh/ChapterFour/0001~0099/0063.Unique-Paths-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0063.Unique-Paths-II/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0064.Minimum-Path-Sum/index.html b/website/public/zh/ChapterFour/0001~0099/0064.Minimum-Path-Sum/index.html index 6628528e1..abcd1581f 100644 --- a/website/public/zh/ChapterFour/0001~0099/0064.Minimum-Path-Sum/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0064.Minimum-Path-Sum/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0065.Valid-Number/index.html b/website/public/zh/ChapterFour/0001~0099/0065.Valid-Number/index.html index acdb927d1..5ece7012d 100644 --- a/website/public/zh/ChapterFour/0001~0099/0065.Valid-Number/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0065.Valid-Number/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0066.Plus-One/index.html b/website/public/zh/ChapterFour/0001~0099/0066.Plus-One/index.html index 16a57ca9a..5d4d08ad5 100644 --- a/website/public/zh/ChapterFour/0001~0099/0066.Plus-One/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0066.Plus-One/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0067.Add-Binary/index.html b/website/public/zh/ChapterFour/0001~0099/0067.Add-Binary/index.html index da7618e65..17887e45d 100644 --- a/website/public/zh/ChapterFour/0001~0099/0067.Add-Binary/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0067.Add-Binary/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0069.Sqrtx/index.html b/website/public/zh/ChapterFour/0001~0099/0069.Sqrtx/index.html index a9c61a117..f5c273531 100644 --- a/website/public/zh/ChapterFour/0001~0099/0069.Sqrtx/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0069.Sqrtx/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0070.Climbing-Stairs/index.html b/website/public/zh/ChapterFour/0001~0099/0070.Climbing-Stairs/index.html index 945a0cad1..abf679fbe 100644 --- a/website/public/zh/ChapterFour/0001~0099/0070.Climbing-Stairs/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0070.Climbing-Stairs/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0071.Simplify-Path/index.html b/website/public/zh/ChapterFour/0001~0099/0071.Simplify-Path/index.html index 2736084d9..7e2ad603d 100644 --- a/website/public/zh/ChapterFour/0001~0099/0071.Simplify-Path/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0071.Simplify-Path/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0073.Set-Matrix-Zeroes/index.html b/website/public/zh/ChapterFour/0001~0099/0073.Set-Matrix-Zeroes/index.html index 3cacc0231..5121b8523 100644 --- a/website/public/zh/ChapterFour/0001~0099/0073.Set-Matrix-Zeroes/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0073.Set-Matrix-Zeroes/index.html @@ -12399,7 +12399,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0074.Search-a-2D-Matrix/index.html b/website/public/zh/ChapterFour/0001~0099/0074.Search-a-2D-Matrix/index.html index b1f6c7cdc..09a13809f 100644 --- a/website/public/zh/ChapterFour/0001~0099/0074.Search-a-2D-Matrix/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0074.Search-a-2D-Matrix/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0075.Sort-Colors/index.html b/website/public/zh/ChapterFour/0001~0099/0075.Sort-Colors/index.html index 2a55df058..9207851da 100644 --- a/website/public/zh/ChapterFour/0001~0099/0075.Sort-Colors/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0075.Sort-Colors/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0076.Minimum-Window-Substring/index.html b/website/public/zh/ChapterFour/0001~0099/0076.Minimum-Window-Substring/index.html index bfe29d41a..8639a38c8 100644 --- a/website/public/zh/ChapterFour/0001~0099/0076.Minimum-Window-Substring/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0076.Minimum-Window-Substring/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0077.Combinations/index.html b/website/public/zh/ChapterFour/0001~0099/0077.Combinations/index.html index 0959bb6a5..7a28e1dee 100644 --- a/website/public/zh/ChapterFour/0001~0099/0077.Combinations/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0077.Combinations/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0078.Subsets/index.html b/website/public/zh/ChapterFour/0001~0099/0078.Subsets/index.html index 263db00c6..3c3f6831c 100644 --- a/website/public/zh/ChapterFour/0001~0099/0078.Subsets/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0078.Subsets/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0079.Word-Search/index.html b/website/public/zh/ChapterFour/0001~0099/0079.Word-Search/index.html index 29f6a9942..8375d4fe8 100644 --- a/website/public/zh/ChapterFour/0001~0099/0079.Word-Search/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0079.Word-Search/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0080.Remove-Duplicates-from-Sorted-Array-II/index.html b/website/public/zh/ChapterFour/0001~0099/0080.Remove-Duplicates-from-Sorted-Array-II/index.html index f0dd42798..731923200 100644 --- a/website/public/zh/ChapterFour/0001~0099/0080.Remove-Duplicates-from-Sorted-Array-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0080.Remove-Duplicates-from-Sorted-Array-II/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0081.Search-in-Rotated-Sorted-Array-II/index.html b/website/public/zh/ChapterFour/0001~0099/0081.Search-in-Rotated-Sorted-Array-II/index.html index 1cc1a9fc4..77c3b2474 100644 --- a/website/public/zh/ChapterFour/0001~0099/0081.Search-in-Rotated-Sorted-Array-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0081.Search-in-Rotated-Sorted-Array-II/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0082.Remove-Duplicates-from-Sorted-List-II/index.html b/website/public/zh/ChapterFour/0001~0099/0082.Remove-Duplicates-from-Sorted-List-II/index.html index d03c5e8af..713b5af66 100644 --- a/website/public/zh/ChapterFour/0001~0099/0082.Remove-Duplicates-from-Sorted-List-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0082.Remove-Duplicates-from-Sorted-List-II/index.html @@ -12490,7 +12490,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0083.Remove-Duplicates-from-Sorted-List/index.html b/website/public/zh/ChapterFour/0001~0099/0083.Remove-Duplicates-from-Sorted-List/index.html index 6f1d80847..e50c8792b 100644 --- a/website/public/zh/ChapterFour/0001~0099/0083.Remove-Duplicates-from-Sorted-List/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0083.Remove-Duplicates-from-Sorted-List/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0084.Largest-Rectangle-in-Histogram/index.html b/website/public/zh/ChapterFour/0001~0099/0084.Largest-Rectangle-in-Histogram/index.html index 30d6b7798..dea29ebd3 100644 --- a/website/public/zh/ChapterFour/0001~0099/0084.Largest-Rectangle-in-Histogram/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0084.Largest-Rectangle-in-Histogram/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0085.Maximal-Rectangle/index.html b/website/public/zh/ChapterFour/0001~0099/0085.Maximal-Rectangle/index.html index c708d5c67..ba5fac3f6 100644 --- a/website/public/zh/ChapterFour/0001~0099/0085.Maximal-Rectangle/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0085.Maximal-Rectangle/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0086.Partition-List/index.html b/website/public/zh/ChapterFour/0001~0099/0086.Partition-List/index.html index f8b929aec..a215f025c 100644 --- a/website/public/zh/ChapterFour/0001~0099/0086.Partition-List/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0086.Partition-List/index.html @@ -12440,7 +12440,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0088.Merge-Sorted-Array/index.html b/website/public/zh/ChapterFour/0001~0099/0088.Merge-Sorted-Array/index.html index b97ce51f0..6f50498dc 100644 --- a/website/public/zh/ChapterFour/0001~0099/0088.Merge-Sorted-Array/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0088.Merge-Sorted-Array/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0089.Gray-Code/index.html b/website/public/zh/ChapterFour/0001~0099/0089.Gray-Code/index.html index e4991a1c3..d80348fe9 100644 --- a/website/public/zh/ChapterFour/0001~0099/0089.Gray-Code/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0089.Gray-Code/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0090.Subsets-II/index.html b/website/public/zh/ChapterFour/0001~0099/0090.Subsets-II/index.html index d3d50c546..59f55f610 100644 --- a/website/public/zh/ChapterFour/0001~0099/0090.Subsets-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0090.Subsets-II/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0091.Decode-Ways/index.html b/website/public/zh/ChapterFour/0001~0099/0091.Decode-Ways/index.html index 850818bbd..6f434fbeb 100644 --- a/website/public/zh/ChapterFour/0001~0099/0091.Decode-Ways/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0091.Decode-Ways/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0092.Reverse-Linked-List-II/index.html b/website/public/zh/ChapterFour/0001~0099/0092.Reverse-Linked-List-II/index.html index 481da1e5a..89a2a0f3b 100644 --- a/website/public/zh/ChapterFour/0001~0099/0092.Reverse-Linked-List-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0092.Reverse-Linked-List-II/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0093.Restore-IP-Addresses/index.html b/website/public/zh/ChapterFour/0001~0099/0093.Restore-IP-Addresses/index.html index 038e56c55..60a20a318 100644 --- a/website/public/zh/ChapterFour/0001~0099/0093.Restore-IP-Addresses/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0093.Restore-IP-Addresses/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0094.Binary-Tree-Inorder-Traversal/index.html b/website/public/zh/ChapterFour/0001~0099/0094.Binary-Tree-Inorder-Traversal/index.html index a236362ee..a18364df0 100644 --- a/website/public/zh/ChapterFour/0001~0099/0094.Binary-Tree-Inorder-Traversal/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0094.Binary-Tree-Inorder-Traversal/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0095.Unique-Binary-Search-Trees-II/index.html b/website/public/zh/ChapterFour/0001~0099/0095.Unique-Binary-Search-Trees-II/index.html index e8090e007..4633586c8 100644 --- a/website/public/zh/ChapterFour/0001~0099/0095.Unique-Binary-Search-Trees-II/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0095.Unique-Binary-Search-Trees-II/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0096.Unique-Binary-Search-Trees/index.html b/website/public/zh/ChapterFour/0001~0099/0096.Unique-Binary-Search-Trees/index.html index 9cc827359..da0f43ab3 100644 --- a/website/public/zh/ChapterFour/0001~0099/0096.Unique-Binary-Search-Trees/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0096.Unique-Binary-Search-Trees/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0097.Interleaving-String/index.html b/website/public/zh/ChapterFour/0001~0099/0097.Interleaving-String/index.html index dd165e949..644688d14 100644 --- a/website/public/zh/ChapterFour/0001~0099/0097.Interleaving-String/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0097.Interleaving-String/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0098.Validate-Binary-Search-Tree/index.html b/website/public/zh/ChapterFour/0001~0099/0098.Validate-Binary-Search-Tree/index.html index 2b8a3511f..7dd9633dd 100644 --- a/website/public/zh/ChapterFour/0001~0099/0098.Validate-Binary-Search-Tree/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0098.Validate-Binary-Search-Tree/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/0099.Recover-Binary-Search-Tree/index.html b/website/public/zh/ChapterFour/0001~0099/0099.Recover-Binary-Search-Tree/index.html index 024a683b4..a3853d47e 100644 --- a/website/public/zh/ChapterFour/0001~0099/0099.Recover-Binary-Search-Tree/index.html +++ b/website/public/zh/ChapterFour/0001~0099/0099.Recover-Binary-Search-Tree/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0001~0099/index.html b/website/public/zh/ChapterFour/0001~0099/index.html index cbc794a3a..5ea7fa5bf 100644 --- a/website/public/zh/ChapterFour/0001~0099/index.html +++ b/website/public/zh/ChapterFour/0001~0099/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0100.Same-Tree/index.html b/website/public/zh/ChapterFour/0100~0199/0100.Same-Tree/index.html index fe78ce548..b9976be30 100644 --- a/website/public/zh/ChapterFour/0100~0199/0100.Same-Tree/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0100.Same-Tree/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0101.Symmetric-Tree/index.html b/website/public/zh/ChapterFour/0100~0199/0101.Symmetric-Tree/index.html index fdc752786..86da40dc5 100644 --- a/website/public/zh/ChapterFour/0100~0199/0101.Symmetric-Tree/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0101.Symmetric-Tree/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0102.Binary-Tree-Level-Order-Traversal/index.html b/website/public/zh/ChapterFour/0100~0199/0102.Binary-Tree-Level-Order-Traversal/index.html index e2789b095..103d04210 100644 --- a/website/public/zh/ChapterFour/0100~0199/0102.Binary-Tree-Level-Order-Traversal/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0102.Binary-Tree-Level-Order-Traversal/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0103.Binary-Tree-Zigzag-Level-Order-Traversal/index.html b/website/public/zh/ChapterFour/0100~0199/0103.Binary-Tree-Zigzag-Level-Order-Traversal/index.html index 34f8dcd70..10e36fde4 100644 --- a/website/public/zh/ChapterFour/0100~0199/0103.Binary-Tree-Zigzag-Level-Order-Traversal/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0103.Binary-Tree-Zigzag-Level-Order-Traversal/index.html @@ -12464,7 +12464,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0104.Maximum-Depth-of-Binary-Tree/index.html b/website/public/zh/ChapterFour/0100~0199/0104.Maximum-Depth-of-Binary-Tree/index.html index 3ee53bf89..a16400499 100644 --- a/website/public/zh/ChapterFour/0100~0199/0104.Maximum-Depth-of-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0104.Maximum-Depth-of-Binary-Tree/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/index.html b/website/public/zh/ChapterFour/0100~0199/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/index.html index f9720cd66..a147404de 100644 --- a/website/public/zh/ChapterFour/0100~0199/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/index.html b/website/public/zh/ChapterFour/0100~0199/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/index.html index e153f7b15..9a57d3aea 100644 --- a/website/public/zh/ChapterFour/0100~0199/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0107.Binary-Tree-Level-Order-Traversal-II/index.html b/website/public/zh/ChapterFour/0100~0199/0107.Binary-Tree-Level-Order-Traversal-II/index.html index 42bc3d5f4..926d50c0e 100644 --- a/website/public/zh/ChapterFour/0100~0199/0107.Binary-Tree-Level-Order-Traversal-II/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0107.Binary-Tree-Level-Order-Traversal-II/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0108.Convert-Sorted-Array-to-Binary-Search-Tree/index.html b/website/public/zh/ChapterFour/0100~0199/0108.Convert-Sorted-Array-to-Binary-Search-Tree/index.html index c25114edf..a35960625 100644 --- a/website/public/zh/ChapterFour/0100~0199/0108.Convert-Sorted-Array-to-Binary-Search-Tree/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0108.Convert-Sorted-Array-to-Binary-Search-Tree/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0109.Convert-Sorted-List-to-Binary-Search-Tree/index.html b/website/public/zh/ChapterFour/0100~0199/0109.Convert-Sorted-List-to-Binary-Search-Tree/index.html index 32cd43ff6..630f76bac 100644 --- a/website/public/zh/ChapterFour/0100~0199/0109.Convert-Sorted-List-to-Binary-Search-Tree/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0109.Convert-Sorted-List-to-Binary-Search-Tree/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0110.Balanced-Binary-Tree/index.html b/website/public/zh/ChapterFour/0100~0199/0110.Balanced-Binary-Tree/index.html index f24bebaf3..45ad1a462 100644 --- a/website/public/zh/ChapterFour/0100~0199/0110.Balanced-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0110.Balanced-Binary-Tree/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0111.Minimum-Depth-of-Binary-Tree/index.html b/website/public/zh/ChapterFour/0100~0199/0111.Minimum-Depth-of-Binary-Tree/index.html index 580a46fd7..04858e196 100644 --- a/website/public/zh/ChapterFour/0100~0199/0111.Minimum-Depth-of-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0111.Minimum-Depth-of-Binary-Tree/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0112.Path-Sum/index.html b/website/public/zh/ChapterFour/0100~0199/0112.Path-Sum/index.html index aed69f9d3..fe26b4492 100644 --- a/website/public/zh/ChapterFour/0100~0199/0112.Path-Sum/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0112.Path-Sum/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0113.Path-Sum-II/index.html b/website/public/zh/ChapterFour/0100~0199/0113.Path-Sum-II/index.html index 1db81f9cd..919f913b3 100644 --- a/website/public/zh/ChapterFour/0100~0199/0113.Path-Sum-II/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0113.Path-Sum-II/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0114.Flatten-Binary-Tree-to-Linked-List/index.html b/website/public/zh/ChapterFour/0100~0199/0114.Flatten-Binary-Tree-to-Linked-List/index.html index 25b76ce2c..93486fd46 100644 --- a/website/public/zh/ChapterFour/0100~0199/0114.Flatten-Binary-Tree-to-Linked-List/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0114.Flatten-Binary-Tree-to-Linked-List/index.html @@ -12502,7 +12502,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0115.Distinct-Subsequences/index.html b/website/public/zh/ChapterFour/0100~0199/0115.Distinct-Subsequences/index.html index ad73415fc..b267cc1a5 100644 --- a/website/public/zh/ChapterFour/0100~0199/0115.Distinct-Subsequences/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0115.Distinct-Subsequences/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0116.Populating-Next-Right-Pointers-in-Each-Node/index.html b/website/public/zh/ChapterFour/0100~0199/0116.Populating-Next-Right-Pointers-in-Each-Node/index.html index f7ffb6c6f..254babc0e 100644 --- a/website/public/zh/ChapterFour/0100~0199/0116.Populating-Next-Right-Pointers-in-Each-Node/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0116.Populating-Next-Right-Pointers-in-Each-Node/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0118.Pascals-Triangle/index.html b/website/public/zh/ChapterFour/0100~0199/0118.Pascals-Triangle/index.html index 3f6cc8b00..76e521695 100644 --- a/website/public/zh/ChapterFour/0100~0199/0118.Pascals-Triangle/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0118.Pascals-Triangle/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0119.Pascals-Triangle-II/index.html b/website/public/zh/ChapterFour/0100~0199/0119.Pascals-Triangle-II/index.html index b4f7c2888..7c527642c 100644 --- a/website/public/zh/ChapterFour/0100~0199/0119.Pascals-Triangle-II/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0119.Pascals-Triangle-II/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0120.Triangle/index.html b/website/public/zh/ChapterFour/0100~0199/0120.Triangle/index.html index d444a7c1c..69b35a05d 100644 --- a/website/public/zh/ChapterFour/0100~0199/0120.Triangle/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0120.Triangle/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0121.Best-Time-to-Buy-and-Sell-Stock/index.html b/website/public/zh/ChapterFour/0100~0199/0121.Best-Time-to-Buy-and-Sell-Stock/index.html index 95dbc6d8e..fb716c036 100644 --- a/website/public/zh/ChapterFour/0100~0199/0121.Best-Time-to-Buy-and-Sell-Stock/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0121.Best-Time-to-Buy-and-Sell-Stock/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0122.Best-Time-to-Buy-and-Sell-Stock-II/index.html b/website/public/zh/ChapterFour/0100~0199/0122.Best-Time-to-Buy-and-Sell-Stock-II/index.html index bb3b46a72..7924ffc45 100644 --- a/website/public/zh/ChapterFour/0100~0199/0122.Best-Time-to-Buy-and-Sell-Stock-II/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0122.Best-Time-to-Buy-and-Sell-Stock-II/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0124.Binary-Tree-Maximum-Path-Sum/index.html b/website/public/zh/ChapterFour/0100~0199/0124.Binary-Tree-Maximum-Path-Sum/index.html index f61d0130f..9fe577a4e 100644 --- a/website/public/zh/ChapterFour/0100~0199/0124.Binary-Tree-Maximum-Path-Sum/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0124.Binary-Tree-Maximum-Path-Sum/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0125.Valid-Palindrome/index.html b/website/public/zh/ChapterFour/0100~0199/0125.Valid-Palindrome/index.html index 5ed6e0dcb..9754bce79 100644 --- a/website/public/zh/ChapterFour/0100~0199/0125.Valid-Palindrome/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0125.Valid-Palindrome/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0126.Word-Ladder-II/index.html b/website/public/zh/ChapterFour/0100~0199/0126.Word-Ladder-II/index.html index c0decbed9..aba2f5b02 100644 --- a/website/public/zh/ChapterFour/0100~0199/0126.Word-Ladder-II/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0126.Word-Ladder-II/index.html @@ -12429,7 +12429,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0127.Word-Ladder/index.html b/website/public/zh/ChapterFour/0100~0199/0127.Word-Ladder/index.html index 3b56c129e..7c4fdea24 100644 --- a/website/public/zh/ChapterFour/0100~0199/0127.Word-Ladder/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0127.Word-Ladder/index.html @@ -12423,7 +12423,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0128.Longest-Consecutive-Sequence/index.html b/website/public/zh/ChapterFour/0100~0199/0128.Longest-Consecutive-Sequence/index.html index b883eb427..34ae398ba 100644 --- a/website/public/zh/ChapterFour/0100~0199/0128.Longest-Consecutive-Sequence/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0128.Longest-Consecutive-Sequence/index.html @@ -12437,7 +12437,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0129.Sum-Root-to-Leaf-Numbers/index.html b/website/public/zh/ChapterFour/0100~0199/0129.Sum-Root-to-Leaf-Numbers/index.html index 69a6bc58c..d3dd38b7f 100644 --- a/website/public/zh/ChapterFour/0100~0199/0129.Sum-Root-to-Leaf-Numbers/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0129.Sum-Root-to-Leaf-Numbers/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0130.Surrounded-Regions/index.html b/website/public/zh/ChapterFour/0100~0199/0130.Surrounded-Regions/index.html index 99c88ef46..91ab21643 100644 --- a/website/public/zh/ChapterFour/0100~0199/0130.Surrounded-Regions/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0130.Surrounded-Regions/index.html @@ -12422,7 +12422,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0131.Palindrome-Partitioning/index.html b/website/public/zh/ChapterFour/0100~0199/0131.Palindrome-Partitioning/index.html index 99a270045..046ee5964 100644 --- a/website/public/zh/ChapterFour/0100~0199/0131.Palindrome-Partitioning/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0131.Palindrome-Partitioning/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0132.Palindrome-Partitioning-II/index.html b/website/public/zh/ChapterFour/0100~0199/0132.Palindrome-Partitioning-II/index.html index c17f2bb6d..ccc7efc7a 100644 --- a/website/public/zh/ChapterFour/0100~0199/0132.Palindrome-Partitioning-II/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0132.Palindrome-Partitioning-II/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0134.Gas-Station/index.html b/website/public/zh/ChapterFour/0100~0199/0134.Gas-Station/index.html index 3fb7c186e..3964c3c81 100644 --- a/website/public/zh/ChapterFour/0100~0199/0134.Gas-Station/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0134.Gas-Station/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0135.Candy/index.html b/website/public/zh/ChapterFour/0100~0199/0135.Candy/index.html index 0d5be307f..a362360e0 100644 --- a/website/public/zh/ChapterFour/0100~0199/0135.Candy/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0135.Candy/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0136.Single-Number/index.html b/website/public/zh/ChapterFour/0100~0199/0136.Single-Number/index.html index 2a03c952d..d58cc7792 100644 --- a/website/public/zh/ChapterFour/0100~0199/0136.Single-Number/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0136.Single-Number/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0137.Single-Number-II/index.html b/website/public/zh/ChapterFour/0100~0199/0137.Single-Number-II/index.html index 93083a50a..e0a63c4ba 100644 --- a/website/public/zh/ChapterFour/0100~0199/0137.Single-Number-II/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0137.Single-Number-II/index.html @@ -12510,7 +12510,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0138.Copy-List-With-Random-Pointer/index.html b/website/public/zh/ChapterFour/0100~0199/0138.Copy-List-With-Random-Pointer/index.html index a603cef01..a27536eb9 100644 --- a/website/public/zh/ChapterFour/0100~0199/0138.Copy-List-With-Random-Pointer/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0138.Copy-List-With-Random-Pointer/index.html @@ -12421,7 +12421,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0141.Linked-List-Cycle/index.html b/website/public/zh/ChapterFour/0100~0199/0141.Linked-List-Cycle/index.html index 5a4084ad7..6619a9bdb 100644 --- a/website/public/zh/ChapterFour/0100~0199/0141.Linked-List-Cycle/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0141.Linked-List-Cycle/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0142.Linked-List-Cycle-II/index.html b/website/public/zh/ChapterFour/0100~0199/0142.Linked-List-Cycle-II/index.html index ca3ea8ee7..beb7c28c5 100644 --- a/website/public/zh/ChapterFour/0100~0199/0142.Linked-List-Cycle-II/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0142.Linked-List-Cycle-II/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0143.Reorder-List/index.html b/website/public/zh/ChapterFour/0100~0199/0143.Reorder-List/index.html index 478901b12..bde28f5fb 100644 --- a/website/public/zh/ChapterFour/0100~0199/0143.Reorder-List/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0143.Reorder-List/index.html @@ -12426,7 +12426,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0144.Binary-Tree-Preorder-Traversal/index.html b/website/public/zh/ChapterFour/0100~0199/0144.Binary-Tree-Preorder-Traversal/index.html index 1fe6ddffb..47b78d362 100644 --- a/website/public/zh/ChapterFour/0100~0199/0144.Binary-Tree-Preorder-Traversal/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0144.Binary-Tree-Preorder-Traversal/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0145.Binary-Tree-Postorder-Traversal/index.html b/website/public/zh/ChapterFour/0100~0199/0145.Binary-Tree-Postorder-Traversal/index.html index 4b683461d..928db50f8 100644 --- a/website/public/zh/ChapterFour/0100~0199/0145.Binary-Tree-Postorder-Traversal/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0145.Binary-Tree-Postorder-Traversal/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0146.LRU-Cache/index.html b/website/public/zh/ChapterFour/0100~0199/0146.LRU-Cache/index.html index 2e0a0b153..513dcc108 100644 --- a/website/public/zh/ChapterFour/0100~0199/0146.LRU-Cache/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0146.LRU-Cache/index.html @@ -12433,7 +12433,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0147.Insertion-Sort-List/index.html b/website/public/zh/ChapterFour/0100~0199/0147.Insertion-Sort-List/index.html index 8f1145c8a..5a9ff9616 100644 --- a/website/public/zh/ChapterFour/0100~0199/0147.Insertion-Sort-List/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0147.Insertion-Sort-List/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0148.Sort-List/index.html b/website/public/zh/ChapterFour/0100~0199/0148.Sort-List/index.html index 57f2f3f3a..02c4dedc9 100644 --- a/website/public/zh/ChapterFour/0100~0199/0148.Sort-List/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0148.Sort-List/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0150.Evaluate-Reverse-Polish-Notation/index.html b/website/public/zh/ChapterFour/0100~0199/0150.Evaluate-Reverse-Polish-Notation/index.html index 13f43f23d..d3041490d 100644 --- a/website/public/zh/ChapterFour/0100~0199/0150.Evaluate-Reverse-Polish-Notation/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0150.Evaluate-Reverse-Polish-Notation/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0151.Reverse-Words-in-a-String/index.html b/website/public/zh/ChapterFour/0100~0199/0151.Reverse-Words-in-a-String/index.html index f795bffae..40ca6c220 100644 --- a/website/public/zh/ChapterFour/0100~0199/0151.Reverse-Words-in-a-String/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0151.Reverse-Words-in-a-String/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0152.Maximum-Product-Subarray/index.html b/website/public/zh/ChapterFour/0100~0199/0152.Maximum-Product-Subarray/index.html index e863cccfa..5f0defe3f 100644 --- a/website/public/zh/ChapterFour/0100~0199/0152.Maximum-Product-Subarray/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0152.Maximum-Product-Subarray/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0153.Find-Minimum-in-Rotated-Sorted-Array/index.html b/website/public/zh/ChapterFour/0100~0199/0153.Find-Minimum-in-Rotated-Sorted-Array/index.html index d2073ca86..d24e6ebaa 100644 --- a/website/public/zh/ChapterFour/0100~0199/0153.Find-Minimum-in-Rotated-Sorted-Array/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0153.Find-Minimum-in-Rotated-Sorted-Array/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0154.Find-Minimum-in-Rotated-Sorted-Array-II/index.html b/website/public/zh/ChapterFour/0100~0199/0154.Find-Minimum-in-Rotated-Sorted-Array-II/index.html index 5dcd6c912..78b0c2d53 100644 --- a/website/public/zh/ChapterFour/0100~0199/0154.Find-Minimum-in-Rotated-Sorted-Array-II/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0154.Find-Minimum-in-Rotated-Sorted-Array-II/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0155.Min-Stack/index.html b/website/public/zh/ChapterFour/0100~0199/0155.Min-Stack/index.html index 8f36dc990..aa4527eae 100644 --- a/website/public/zh/ChapterFour/0100~0199/0155.Min-Stack/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0155.Min-Stack/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0160.Intersection-of-Two-Linked-Lists/index.html b/website/public/zh/ChapterFour/0100~0199/0160.Intersection-of-Two-Linked-Lists/index.html index 4503bf63d..e2c3fdf7e 100644 --- a/website/public/zh/ChapterFour/0100~0199/0160.Intersection-of-Two-Linked-Lists/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0160.Intersection-of-Two-Linked-Lists/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0162.Find-Peak-Element/index.html b/website/public/zh/ChapterFour/0100~0199/0162.Find-Peak-Element/index.html index 802fa11ec..3ed2d1f99 100644 --- a/website/public/zh/ChapterFour/0100~0199/0162.Find-Peak-Element/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0162.Find-Peak-Element/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0164.Maximum-Gap/index.html b/website/public/zh/ChapterFour/0100~0199/0164.Maximum-Gap/index.html index ef59533a4..fac7da5f8 100644 --- a/website/public/zh/ChapterFour/0100~0199/0164.Maximum-Gap/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0164.Maximum-Gap/index.html @@ -12429,7 +12429,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0167.Two-Sum-II-Input-array-is-sorted/index.html b/website/public/zh/ChapterFour/0100~0199/0167.Two-Sum-II-Input-array-is-sorted/index.html index 97c22ca6a..c2ec6f186 100644 --- a/website/public/zh/ChapterFour/0100~0199/0167.Two-Sum-II-Input-array-is-sorted/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0167.Two-Sum-II-Input-array-is-sorted/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0168.Excel-Sheet-Column-Title/index.html b/website/public/zh/ChapterFour/0100~0199/0168.Excel-Sheet-Column-Title/index.html index 4bb3bbbde..f6c9e7ebd 100644 --- a/website/public/zh/ChapterFour/0100~0199/0168.Excel-Sheet-Column-Title/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0168.Excel-Sheet-Column-Title/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0169.Majority-Element/index.html b/website/public/zh/ChapterFour/0100~0199/0169.Majority-Element/index.html index 55a69b45d..9765e9c6e 100644 --- a/website/public/zh/ChapterFour/0100~0199/0169.Majority-Element/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0169.Majority-Element/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0171.Excel-Sheet-Column-Number/index.html b/website/public/zh/ChapterFour/0100~0199/0171.Excel-Sheet-Column-Number/index.html index 6badc8537..57cc8ec49 100644 --- a/website/public/zh/ChapterFour/0100~0199/0171.Excel-Sheet-Column-Number/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0171.Excel-Sheet-Column-Number/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0172.Factorial-Trailing-Zeroes/index.html b/website/public/zh/ChapterFour/0100~0199/0172.Factorial-Trailing-Zeroes/index.html index 89ba8a778..169148826 100644 --- a/website/public/zh/ChapterFour/0100~0199/0172.Factorial-Trailing-Zeroes/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0172.Factorial-Trailing-Zeroes/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0173.Binary-Search-Tree-Iterator/index.html b/website/public/zh/ChapterFour/0100~0199/0173.Binary-Search-Tree-Iterator/index.html index 82fd5f1f2..5126bba9f 100644 --- a/website/public/zh/ChapterFour/0100~0199/0173.Binary-Search-Tree-Iterator/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0173.Binary-Search-Tree-Iterator/index.html @@ -12432,7 +12432,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0174.Dungeon-Game/index.html b/website/public/zh/ChapterFour/0100~0199/0174.Dungeon-Game/index.html index 626d7103e..00b9ae55f 100644 --- a/website/public/zh/ChapterFour/0100~0199/0174.Dungeon-Game/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0174.Dungeon-Game/index.html @@ -12437,7 +12437,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0179.Largest-Number/index.html b/website/public/zh/ChapterFour/0100~0199/0179.Largest-Number/index.html index 810582e4d..00d2def9d 100644 --- a/website/public/zh/ChapterFour/0100~0199/0179.Largest-Number/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0179.Largest-Number/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0187.Repeated-DNA-Sequences/index.html b/website/public/zh/ChapterFour/0100~0199/0187.Repeated-DNA-Sequences/index.html index 05d94fcee..6ed469a60 100644 --- a/website/public/zh/ChapterFour/0100~0199/0187.Repeated-DNA-Sequences/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0187.Repeated-DNA-Sequences/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0189.Rotate-Array/index.html b/website/public/zh/ChapterFour/0100~0199/0189.Rotate-Array/index.html index 9297af45f..22bab1beb 100644 --- a/website/public/zh/ChapterFour/0100~0199/0189.Rotate-Array/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0189.Rotate-Array/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0190.Reverse-Bits/index.html b/website/public/zh/ChapterFour/0100~0199/0190.Reverse-Bits/index.html index d03c918ea..12c02ab7a 100644 --- a/website/public/zh/ChapterFour/0100~0199/0190.Reverse-Bits/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0190.Reverse-Bits/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0191.Number-of-1-Bits/index.html b/website/public/zh/ChapterFour/0100~0199/0191.Number-of-1-Bits/index.html index 18db972ea..fd779f300 100644 --- a/website/public/zh/ChapterFour/0100~0199/0191.Number-of-1-Bits/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0191.Number-of-1-Bits/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0198.House-Robber/index.html b/website/public/zh/ChapterFour/0100~0199/0198.House-Robber/index.html index d8e37e537..baff4500c 100644 --- a/website/public/zh/ChapterFour/0100~0199/0198.House-Robber/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0198.House-Robber/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/0199.Binary-Tree-Right-Side-View/index.html b/website/public/zh/ChapterFour/0100~0199/0199.Binary-Tree-Right-Side-View/index.html index f6c3db63e..b30f443bf 100644 --- a/website/public/zh/ChapterFour/0100~0199/0199.Binary-Tree-Right-Side-View/index.html +++ b/website/public/zh/ChapterFour/0100~0199/0199.Binary-Tree-Right-Side-View/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0100~0199/index.html b/website/public/zh/ChapterFour/0100~0199/index.html index abab0843a..3215146b9 100644 --- a/website/public/zh/ChapterFour/0100~0199/index.html +++ b/website/public/zh/ChapterFour/0100~0199/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0200.Number-of-Islands/index.html b/website/public/zh/ChapterFour/0200~0299/0200.Number-of-Islands/index.html index b393801b3..b3f803919 100644 --- a/website/public/zh/ChapterFour/0200~0299/0200.Number-of-Islands/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0200.Number-of-Islands/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0201.Bitwise-AND-of-Numbers-Range/index.html b/website/public/zh/ChapterFour/0200~0299/0201.Bitwise-AND-of-Numbers-Range/index.html index 6216bdc5f..575a11c24 100644 --- a/website/public/zh/ChapterFour/0200~0299/0201.Bitwise-AND-of-Numbers-Range/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0201.Bitwise-AND-of-Numbers-Range/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0202.Happy-Number/index.html b/website/public/zh/ChapterFour/0200~0299/0202.Happy-Number/index.html index 88a6feee9..f17eb17df 100644 --- a/website/public/zh/ChapterFour/0200~0299/0202.Happy-Number/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0202.Happy-Number/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0203.Remove-Linked-List-Elements/index.html b/website/public/zh/ChapterFour/0200~0299/0203.Remove-Linked-List-Elements/index.html index 7f3e932d2..0529e42fb 100644 --- a/website/public/zh/ChapterFour/0200~0299/0203.Remove-Linked-List-Elements/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0203.Remove-Linked-List-Elements/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0204.Count-Primes/index.html b/website/public/zh/ChapterFour/0200~0299/0204.Count-Primes/index.html index b4f513d21..29b9550ca 100644 --- a/website/public/zh/ChapterFour/0200~0299/0204.Count-Primes/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0204.Count-Primes/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0205.Isomorphic-Strings/index.html b/website/public/zh/ChapterFour/0200~0299/0205.Isomorphic-Strings/index.html index db0988f88..7ca3b2abe 100644 --- a/website/public/zh/ChapterFour/0200~0299/0205.Isomorphic-Strings/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0205.Isomorphic-Strings/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0206.Reverse-Linked-List/index.html b/website/public/zh/ChapterFour/0200~0299/0206.Reverse-Linked-List/index.html index daa08907e..7213418df 100644 --- a/website/public/zh/ChapterFour/0200~0299/0206.Reverse-Linked-List/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0206.Reverse-Linked-List/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0207.Course-Schedule/index.html b/website/public/zh/ChapterFour/0200~0299/0207.Course-Schedule/index.html index 1aeebed95..840a1816e 100644 --- a/website/public/zh/ChapterFour/0200~0299/0207.Course-Schedule/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0207.Course-Schedule/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0208.Implement-Trie-Prefix-Tree/index.html b/website/public/zh/ChapterFour/0200~0299/0208.Implement-Trie-Prefix-Tree/index.html index d1855280b..ca2d8e0f5 100644 --- a/website/public/zh/ChapterFour/0200~0299/0208.Implement-Trie-Prefix-Tree/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0208.Implement-Trie-Prefix-Tree/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0209.Minimum-Size-Subarray-Sum/index.html b/website/public/zh/ChapterFour/0200~0299/0209.Minimum-Size-Subarray-Sum/index.html index aa2f06773..f24cd9c5f 100644 --- a/website/public/zh/ChapterFour/0200~0299/0209.Minimum-Size-Subarray-Sum/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0209.Minimum-Size-Subarray-Sum/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0210.Course-Schedule-II/index.html b/website/public/zh/ChapterFour/0200~0299/0210.Course-Schedule-II/index.html index 53cf5c13e..6fc251530 100644 --- a/website/public/zh/ChapterFour/0200~0299/0210.Course-Schedule-II/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0210.Course-Schedule-II/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0211.Design-Add-and-Search-Words-Data-Structure/index.html b/website/public/zh/ChapterFour/0200~0299/0211.Design-Add-and-Search-Words-Data-Structure/index.html index 4d05f7f5f..3be81bbfc 100644 --- a/website/public/zh/ChapterFour/0200~0299/0211.Design-Add-and-Search-Words-Data-Structure/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0211.Design-Add-and-Search-Words-Data-Structure/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0212.Word-Search-II/index.html b/website/public/zh/ChapterFour/0200~0299/0212.Word-Search-II/index.html index c0c4c3591..bf104ccc6 100644 --- a/website/public/zh/ChapterFour/0200~0299/0212.Word-Search-II/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0212.Word-Search-II/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0213.House-Robber-II/index.html b/website/public/zh/ChapterFour/0200~0299/0213.House-Robber-II/index.html index cfea9c1a4..3d114b70b 100644 --- a/website/public/zh/ChapterFour/0200~0299/0213.House-Robber-II/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0213.House-Robber-II/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0215.Kth-Largest-Element-in-an-Array/index.html b/website/public/zh/ChapterFour/0200~0299/0215.Kth-Largest-Element-in-an-Array/index.html index edf776b7a..0fd1b2ac2 100644 --- a/website/public/zh/ChapterFour/0200~0299/0215.Kth-Largest-Element-in-an-Array/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0215.Kth-Largest-Element-in-an-Array/index.html @@ -12413,7 +12413,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0216.Combination-Sum-III/index.html b/website/public/zh/ChapterFour/0200~0299/0216.Combination-Sum-III/index.html index c50905b8a..80acd3561 100644 --- a/website/public/zh/ChapterFour/0200~0299/0216.Combination-Sum-III/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0216.Combination-Sum-III/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0217.Contains-Duplicate/index.html b/website/public/zh/ChapterFour/0200~0299/0217.Contains-Duplicate/index.html index 465ff8da8..c98d5a0c0 100644 --- a/website/public/zh/ChapterFour/0200~0299/0217.Contains-Duplicate/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0217.Contains-Duplicate/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0218.The-Skyline-Problem/index.html b/website/public/zh/ChapterFour/0200~0299/0218.The-Skyline-Problem/index.html index f68c7c457..e0a6f959f 100644 --- a/website/public/zh/ChapterFour/0200~0299/0218.The-Skyline-Problem/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0218.The-Skyline-Problem/index.html @@ -12701,7 +12701,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0219.Contains-Duplicate-II/index.html b/website/public/zh/ChapterFour/0200~0299/0219.Contains-Duplicate-II/index.html index 0b00cca98..1064d5799 100644 --- a/website/public/zh/ChapterFour/0200~0299/0219.Contains-Duplicate-II/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0219.Contains-Duplicate-II/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0220.Contains-Duplicate-III/index.html b/website/public/zh/ChapterFour/0200~0299/0220.Contains-Duplicate-III/index.html index 0469afd49..b66794853 100644 --- a/website/public/zh/ChapterFour/0200~0299/0220.Contains-Duplicate-III/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0220.Contains-Duplicate-III/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0222.Count-Complete-Tree-Nodes/index.html b/website/public/zh/ChapterFour/0200~0299/0222.Count-Complete-Tree-Nodes/index.html index 0ea7af73c..bd84a7171 100644 --- a/website/public/zh/ChapterFour/0200~0299/0222.Count-Complete-Tree-Nodes/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0222.Count-Complete-Tree-Nodes/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0223.Rectangle-Area/index.html b/website/public/zh/ChapterFour/0200~0299/0223.Rectangle-Area/index.html index 657db728d..d019bb9f6 100644 --- a/website/public/zh/ChapterFour/0200~0299/0223.Rectangle-Area/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0223.Rectangle-Area/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0224.Basic-Calculator/index.html b/website/public/zh/ChapterFour/0200~0299/0224.Basic-Calculator/index.html index e06f6181e..843813f46 100644 --- a/website/public/zh/ChapterFour/0200~0299/0224.Basic-Calculator/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0224.Basic-Calculator/index.html @@ -12467,7 +12467,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0225.Implement-Stack-using-Queues/index.html b/website/public/zh/ChapterFour/0200~0299/0225.Implement-Stack-using-Queues/index.html index 26e9dfbb1..4586bd54f 100644 --- a/website/public/zh/ChapterFour/0200~0299/0225.Implement-Stack-using-Queues/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0225.Implement-Stack-using-Queues/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0226.Invert-Binary-Tree/index.html b/website/public/zh/ChapterFour/0200~0299/0226.Invert-Binary-Tree/index.html index eebc258b6..bac078645 100644 --- a/website/public/zh/ChapterFour/0200~0299/0226.Invert-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0226.Invert-Binary-Tree/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0227.Basic-Calculator-II/index.html b/website/public/zh/ChapterFour/0200~0299/0227.Basic-Calculator-II/index.html index 0754e8f58..e2587d938 100644 --- a/website/public/zh/ChapterFour/0200~0299/0227.Basic-Calculator-II/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0227.Basic-Calculator-II/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0228.Summary-Ranges/index.html b/website/public/zh/ChapterFour/0200~0299/0228.Summary-Ranges/index.html index 706795bb6..9006b3b39 100644 --- a/website/public/zh/ChapterFour/0200~0299/0228.Summary-Ranges/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0228.Summary-Ranges/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0229.Majority-Element-II/index.html b/website/public/zh/ChapterFour/0200~0299/0229.Majority-Element-II/index.html index 009bd8322..035ca6456 100644 --- a/website/public/zh/ChapterFour/0200~0299/0229.Majority-Element-II/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0229.Majority-Element-II/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0230.Kth-Smallest-Element-in-a-BST/index.html b/website/public/zh/ChapterFour/0200~0299/0230.Kth-Smallest-Element-in-a-BST/index.html index 94bc04c52..17310c83e 100644 --- a/website/public/zh/ChapterFour/0200~0299/0230.Kth-Smallest-Element-in-a-BST/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0230.Kth-Smallest-Element-in-a-BST/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0231.Power-of-Two/index.html b/website/public/zh/ChapterFour/0200~0299/0231.Power-of-Two/index.html index c67221389..7e4b6f156 100644 --- a/website/public/zh/ChapterFour/0200~0299/0231.Power-of-Two/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0231.Power-of-Two/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0232.Implement-Queue-using-Stacks/index.html b/website/public/zh/ChapterFour/0200~0299/0232.Implement-Queue-using-Stacks/index.html index c2793072f..dc764b44a 100644 --- a/website/public/zh/ChapterFour/0200~0299/0232.Implement-Queue-using-Stacks/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0232.Implement-Queue-using-Stacks/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0234.Palindrome-Linked-List/index.html b/website/public/zh/ChapterFour/0200~0299/0234.Palindrome-Linked-List/index.html index cd50b70dd..2625b6f55 100644 --- a/website/public/zh/ChapterFour/0200~0299/0234.Palindrome-Linked-List/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0234.Palindrome-Linked-List/index.html @@ -12432,7 +12432,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0235.Lowest-Common-Ancestor-of-a-Binary-Search-Tree/index.html b/website/public/zh/ChapterFour/0200~0299/0235.Lowest-Common-Ancestor-of-a-Binary-Search-Tree/index.html index 729b6bcda..5f184be99 100644 --- a/website/public/zh/ChapterFour/0200~0299/0235.Lowest-Common-Ancestor-of-a-Binary-Search-Tree/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0235.Lowest-Common-Ancestor-of-a-Binary-Search-Tree/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0236.Lowest-Common-Ancestor-of-a-Binary-Tree/index.html b/website/public/zh/ChapterFour/0200~0299/0236.Lowest-Common-Ancestor-of-a-Binary-Tree/index.html index 08ad3bc70..185b31914 100644 --- a/website/public/zh/ChapterFour/0200~0299/0236.Lowest-Common-Ancestor-of-a-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0236.Lowest-Common-Ancestor-of-a-Binary-Tree/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0237.Delete-Node-in-a-Linked-List/index.html b/website/public/zh/ChapterFour/0200~0299/0237.Delete-Node-in-a-Linked-List/index.html index 052d97c63..283d3f4af 100644 --- a/website/public/zh/ChapterFour/0200~0299/0237.Delete-Node-in-a-Linked-List/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0237.Delete-Node-in-a-Linked-List/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0238.Product-of-Array-Except-Self/index.html b/website/public/zh/ChapterFour/0200~0299/0238.Product-of-Array-Except-Self/index.html index b16a38e19..3e144e043 100644 --- a/website/public/zh/ChapterFour/0200~0299/0238.Product-of-Array-Except-Self/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0238.Product-of-Array-Except-Self/index.html @@ -12343,7 +12343,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0239.Sliding-Window-Maximum/index.html b/website/public/zh/ChapterFour/0200~0299/0239.Sliding-Window-Maximum/index.html index e789b74cd..4b0b9b800 100644 --- a/website/public/zh/ChapterFour/0200~0299/0239.Sliding-Window-Maximum/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0239.Sliding-Window-Maximum/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0240.Search-a-2D-Matrix-II/index.html b/website/public/zh/ChapterFour/0200~0299/0240.Search-a-2D-Matrix-II/index.html index e80799709..8671e0cbb 100644 --- a/website/public/zh/ChapterFour/0200~0299/0240.Search-a-2D-Matrix-II/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0240.Search-a-2D-Matrix-II/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0242.Valid-Anagram/index.html b/website/public/zh/ChapterFour/0200~0299/0242.Valid-Anagram/index.html index 0e61999ba..3d8e2af93 100644 --- a/website/public/zh/ChapterFour/0200~0299/0242.Valid-Anagram/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0242.Valid-Anagram/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0257.Binary-Tree-Paths/index.html b/website/public/zh/ChapterFour/0200~0299/0257.Binary-Tree-Paths/index.html index 0ae1df356..6614897bf 100644 --- a/website/public/zh/ChapterFour/0200~0299/0257.Binary-Tree-Paths/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0257.Binary-Tree-Paths/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0258.Add-Digits/index.html b/website/public/zh/ChapterFour/0200~0299/0258.Add-Digits/index.html index 341cef644..3eac4af26 100644 --- a/website/public/zh/ChapterFour/0200~0299/0258.Add-Digits/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0258.Add-Digits/index.html @@ -12345,7 +12345,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0260.Single-Number-III/index.html b/website/public/zh/ChapterFour/0200~0299/0260.Single-Number-III/index.html index a2e6056a4..4fc6f76ae 100644 --- a/website/public/zh/ChapterFour/0200~0299/0260.Single-Number-III/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0260.Single-Number-III/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0263.Ugly-Number/index.html b/website/public/zh/ChapterFour/0200~0299/0263.Ugly-Number/index.html index 96439ca6c..97d85512e 100644 --- a/website/public/zh/ChapterFour/0200~0299/0263.Ugly-Number/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0263.Ugly-Number/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0264.Ugly-Number-II/index.html b/website/public/zh/ChapterFour/0200~0299/0264.Ugly-Number-II/index.html index 9dc4813fc..1d1868c56 100644 --- a/website/public/zh/ChapterFour/0200~0299/0264.Ugly-Number-II/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0264.Ugly-Number-II/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0268.Missing-Number/index.html b/website/public/zh/ChapterFour/0200~0299/0268.Missing-Number/index.html index e206b15a2..4c680381f 100644 --- a/website/public/zh/ChapterFour/0200~0299/0268.Missing-Number/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0268.Missing-Number/index.html @@ -12345,7 +12345,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0274.H-Index/index.html b/website/public/zh/ChapterFour/0200~0299/0274.H-Index/index.html index 0111ef2b1..5de2e6b84 100644 --- a/website/public/zh/ChapterFour/0200~0299/0274.H-Index/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0274.H-Index/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0275.H-Index-II/index.html b/website/public/zh/ChapterFour/0200~0299/0275.H-Index-II/index.html index 8bc3aa1ba..3b0e2af39 100644 --- a/website/public/zh/ChapterFour/0200~0299/0275.H-Index-II/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0275.H-Index-II/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0278.First-Bad-Version/index.html b/website/public/zh/ChapterFour/0200~0299/0278.First-Bad-Version/index.html index ba2158a50..5c85c0e40 100644 --- a/website/public/zh/ChapterFour/0200~0299/0278.First-Bad-Version/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0278.First-Bad-Version/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0279.Perfect-Squares/index.html b/website/public/zh/ChapterFour/0200~0299/0279.Perfect-Squares/index.html index 22411f0c5..a08a7c575 100644 --- a/website/public/zh/ChapterFour/0200~0299/0279.Perfect-Squares/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0279.Perfect-Squares/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0283.Move-Zeroes/index.html b/website/public/zh/ChapterFour/0200~0299/0283.Move-Zeroes/index.html index 3c48c2169..d6f8bfa99 100644 --- a/website/public/zh/ChapterFour/0200~0299/0283.Move-Zeroes/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0283.Move-Zeroes/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0284.Peeking-Iterator/index.html b/website/public/zh/ChapterFour/0200~0299/0284.Peeking-Iterator/index.html index 6bcb2f621..30e2e9cfd 100644 --- a/website/public/zh/ChapterFour/0200~0299/0284.Peeking-Iterator/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0284.Peeking-Iterator/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0287.Find-the-Duplicate-Number/index.html b/website/public/zh/ChapterFour/0200~0299/0287.Find-the-Duplicate-Number/index.html index a70a4bf6c..5c383c7d0 100644 --- a/website/public/zh/ChapterFour/0200~0299/0287.Find-the-Duplicate-Number/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0287.Find-the-Duplicate-Number/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0290.Word-Pattern/index.html b/website/public/zh/ChapterFour/0200~0299/0290.Word-Pattern/index.html index a3cc87137..ee531fe37 100644 --- a/website/public/zh/ChapterFour/0200~0299/0290.Word-Pattern/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0290.Word-Pattern/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0297.Serialize-and-Deserialize-Binary-Tree/index.html b/website/public/zh/ChapterFour/0200~0299/0297.Serialize-and-Deserialize-Binary-Tree/index.html index b964dd49f..a0fd2513a 100644 --- a/website/public/zh/ChapterFour/0200~0299/0297.Serialize-and-Deserialize-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0297.Serialize-and-Deserialize-Binary-Tree/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/0299.Bulls-and-Cows/index.html b/website/public/zh/ChapterFour/0200~0299/0299.Bulls-and-Cows/index.html index 4fd3defe9..7101c103f 100644 --- a/website/public/zh/ChapterFour/0200~0299/0299.Bulls-and-Cows/index.html +++ b/website/public/zh/ChapterFour/0200~0299/0299.Bulls-and-Cows/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0200~0299/index.html b/website/public/zh/ChapterFour/0200~0299/index.html index cb1be3a8a..99307958d 100644 --- a/website/public/zh/ChapterFour/0200~0299/index.html +++ b/website/public/zh/ChapterFour/0200~0299/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0300.Longest-Increasing-Subsequence/index.html b/website/public/zh/ChapterFour/0300~0399/0300.Longest-Increasing-Subsequence/index.html index 785cfce9c..4cf8bdb30 100644 --- a/website/public/zh/ChapterFour/0300~0399/0300.Longest-Increasing-Subsequence/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0300.Longest-Increasing-Subsequence/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0301.Remove-Invalid-Parentheses/index.html b/website/public/zh/ChapterFour/0300~0399/0301.Remove-Invalid-Parentheses/index.html index f49968d35..cde7e6d19 100644 --- a/website/public/zh/ChapterFour/0300~0399/0301.Remove-Invalid-Parentheses/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0301.Remove-Invalid-Parentheses/index.html @@ -12436,7 +12436,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0303.Range-Sum-Query-Immutable/index.html b/website/public/zh/ChapterFour/0300~0399/0303.Range-Sum-Query-Immutable/index.html index df18a4cce..c9a219acb 100644 --- a/website/public/zh/ChapterFour/0300~0399/0303.Range-Sum-Query-Immutable/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0303.Range-Sum-Query-Immutable/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0304.Range-Sum-Query-2D-Immutable/index.html b/website/public/zh/ChapterFour/0300~0399/0304.Range-Sum-Query-2D-Immutable/index.html index 17c9a4a1d..c5a569d28 100644 --- a/website/public/zh/ChapterFour/0300~0399/0304.Range-Sum-Query-2D-Immutable/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0304.Range-Sum-Query-2D-Immutable/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0306.Additive-Number/index.html b/website/public/zh/ChapterFour/0300~0399/0306.Additive-Number/index.html index 96635f68f..20a74606a 100644 --- a/website/public/zh/ChapterFour/0300~0399/0306.Additive-Number/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0306.Additive-Number/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0307.Range-Sum-Query-Mutable/index.html b/website/public/zh/ChapterFour/0300~0399/0307.Range-Sum-Query-Mutable/index.html index 61bf38b88..5bc22c114 100644 --- a/website/public/zh/ChapterFour/0300~0399/0307.Range-Sum-Query-Mutable/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0307.Range-Sum-Query-Mutable/index.html @@ -12450,7 +12450,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0309.Best-Time-to-Buy-and-Sell-Stock-with-Cooldown/index.html b/website/public/zh/ChapterFour/0300~0399/0309.Best-Time-to-Buy-and-Sell-Stock-with-Cooldown/index.html index dd26419a7..6adc5ad10 100644 --- a/website/public/zh/ChapterFour/0300~0399/0309.Best-Time-to-Buy-and-Sell-Stock-with-Cooldown/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0309.Best-Time-to-Buy-and-Sell-Stock-with-Cooldown/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0315.Count-of-Smaller-Numbers-After-Self/index.html b/website/public/zh/ChapterFour/0300~0399/0315.Count-of-Smaller-Numbers-After-Self/index.html index 16364fd2b..17de150f6 100644 --- a/website/public/zh/ChapterFour/0300~0399/0315.Count-of-Smaller-Numbers-After-Self/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0315.Count-of-Smaller-Numbers-After-Self/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0316.Remove-Duplicate-Letters/index.html b/website/public/zh/ChapterFour/0300~0399/0316.Remove-Duplicate-Letters/index.html index f0761ccce..25b0bb356 100644 --- a/website/public/zh/ChapterFour/0300~0399/0316.Remove-Duplicate-Letters/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0316.Remove-Duplicate-Letters/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0318.Maximum-Product-of-Word-Lengths/index.html b/website/public/zh/ChapterFour/0300~0399/0318.Maximum-Product-of-Word-Lengths/index.html index 542fdfa16..d09bbd5c2 100644 --- a/website/public/zh/ChapterFour/0300~0399/0318.Maximum-Product-of-Word-Lengths/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0318.Maximum-Product-of-Word-Lengths/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0319.Bulb-Switcher/index.html b/website/public/zh/ChapterFour/0300~0399/0319.Bulb-Switcher/index.html index 7eb6854f5..b01634ab6 100644 --- a/website/public/zh/ChapterFour/0300~0399/0319.Bulb-Switcher/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0319.Bulb-Switcher/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0322.Coin-Change/index.html b/website/public/zh/ChapterFour/0300~0399/0322.Coin-Change/index.html index 32be75626..c72764562 100644 --- a/website/public/zh/ChapterFour/0300~0399/0322.Coin-Change/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0322.Coin-Change/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0324.Wiggle-Sort-II/index.html b/website/public/zh/ChapterFour/0300~0399/0324.Wiggle-Sort-II/index.html index 878b95a84..5eea4605b 100644 --- a/website/public/zh/ChapterFour/0300~0399/0324.Wiggle-Sort-II/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0324.Wiggle-Sort-II/index.html @@ -12492,7 +12492,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0326.Power-of-Three/index.html b/website/public/zh/ChapterFour/0300~0399/0326.Power-of-Three/index.html index 140788e17..aad8d18f8 100644 --- a/website/public/zh/ChapterFour/0300~0399/0326.Power-of-Three/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0326.Power-of-Three/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0327.Count-of-Range-Sum/index.html b/website/public/zh/ChapterFour/0300~0399/0327.Count-of-Range-Sum/index.html index 23627e37b..2ec6d0506 100644 --- a/website/public/zh/ChapterFour/0300~0399/0327.Count-of-Range-Sum/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0327.Count-of-Range-Sum/index.html @@ -12482,7 +12482,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0328.Odd-Even-Linked-List/index.html b/website/public/zh/ChapterFour/0300~0399/0328.Odd-Even-Linked-List/index.html index 426ea14b9..05b7aabce 100644 --- a/website/public/zh/ChapterFour/0300~0399/0328.Odd-Even-Linked-List/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0328.Odd-Even-Linked-List/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0329.Longest-Increasing-Path-in-a-Matrix/index.html b/website/public/zh/ChapterFour/0300~0399/0329.Longest-Increasing-Path-in-a-Matrix/index.html index e0311b85a..ab73f8dd2 100644 --- a/website/public/zh/ChapterFour/0300~0399/0329.Longest-Increasing-Path-in-a-Matrix/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0329.Longest-Increasing-Path-in-a-Matrix/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree/index.html b/website/public/zh/ChapterFour/0300~0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree/index.html index b1c9d550c..048bcf06a 100644 --- a/website/public/zh/ChapterFour/0300~0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0337.House-Robber-III/index.html b/website/public/zh/ChapterFour/0300~0399/0337.House-Robber-III/index.html index eda9c20a4..25d370c9f 100644 --- a/website/public/zh/ChapterFour/0300~0399/0337.House-Robber-III/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0337.House-Robber-III/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0338.Counting-Bits/index.html b/website/public/zh/ChapterFour/0300~0399/0338.Counting-Bits/index.html index 744ab839c..2a26e7ff5 100644 --- a/website/public/zh/ChapterFour/0300~0399/0338.Counting-Bits/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0338.Counting-Bits/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0341.Flatten-Nested-List-Iterator/index.html b/website/public/zh/ChapterFour/0300~0399/0341.Flatten-Nested-List-Iterator/index.html index 08659329d..538deece5 100644 --- a/website/public/zh/ChapterFour/0300~0399/0341.Flatten-Nested-List-Iterator/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0341.Flatten-Nested-List-Iterator/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0342.Power-of-Four/index.html b/website/public/zh/ChapterFour/0300~0399/0342.Power-of-Four/index.html index 6daab4adc..cf71fb421 100644 --- a/website/public/zh/ChapterFour/0300~0399/0342.Power-of-Four/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0342.Power-of-Four/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0343.Integer-Break/index.html b/website/public/zh/ChapterFour/0300~0399/0343.Integer-Break/index.html index 5afb917b8..0d73ee650 100644 --- a/website/public/zh/ChapterFour/0300~0399/0343.Integer-Break/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0343.Integer-Break/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0344.Reverse-String/index.html b/website/public/zh/ChapterFour/0300~0399/0344.Reverse-String/index.html index 9e372d435..0ffc14e0a 100644 --- a/website/public/zh/ChapterFour/0300~0399/0344.Reverse-String/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0344.Reverse-String/index.html @@ -12348,7 +12348,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0345.Reverse-Vowels-of-a-String/index.html b/website/public/zh/ChapterFour/0300~0399/0345.Reverse-Vowels-of-a-String/index.html index a9527b537..aa0333ea5 100644 --- a/website/public/zh/ChapterFour/0300~0399/0345.Reverse-Vowels-of-a-String/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0345.Reverse-Vowels-of-a-String/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0347.Top-K-Frequent-Elements/index.html b/website/public/zh/ChapterFour/0300~0399/0347.Top-K-Frequent-Elements/index.html index 81afb3696..cdcbbc348 100644 --- a/website/public/zh/ChapterFour/0300~0399/0347.Top-K-Frequent-Elements/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0347.Top-K-Frequent-Elements/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0349.Intersection-of-Two-Arrays/index.html b/website/public/zh/ChapterFour/0300~0399/0349.Intersection-of-Two-Arrays/index.html index b77f8d7ab..c8081b8fc 100644 --- a/website/public/zh/ChapterFour/0300~0399/0349.Intersection-of-Two-Arrays/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0349.Intersection-of-Two-Arrays/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II/index.html b/website/public/zh/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II/index.html index 5a435e44a..0b18c35fb 100644 --- a/website/public/zh/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0351.Android-Unlock-Patterns/index.html b/website/public/zh/ChapterFour/0300~0399/0351.Android-Unlock-Patterns/index.html index d3c9f5778..700ef29e4 100644 --- a/website/public/zh/ChapterFour/0300~0399/0351.Android-Unlock-Patterns/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0351.Android-Unlock-Patterns/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0352.Data-Stream-as-Disjoint-Intervals/index.html b/website/public/zh/ChapterFour/0300~0399/0352.Data-Stream-as-Disjoint-Intervals/index.html index 41e4c09e5..bc49f94e4 100644 --- a/website/public/zh/ChapterFour/0300~0399/0352.Data-Stream-as-Disjoint-Intervals/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0352.Data-Stream-as-Disjoint-Intervals/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0354.Russian-Doll-Envelopes/index.html b/website/public/zh/ChapterFour/0300~0399/0354.Russian-Doll-Envelopes/index.html index 91953300f..360868acd 100644 --- a/website/public/zh/ChapterFour/0300~0399/0354.Russian-Doll-Envelopes/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0354.Russian-Doll-Envelopes/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0357.Count-Numbers-with-Unique-Digits/index.html b/website/public/zh/ChapterFour/0300~0399/0357.Count-Numbers-with-Unique-Digits/index.html index 393d33a4f..eaf340529 100644 --- a/website/public/zh/ChapterFour/0300~0399/0357.Count-Numbers-with-Unique-Digits/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0357.Count-Numbers-with-Unique-Digits/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0363.Max-Sum-of-Rectangle-No-Larger-Than-K/index.html b/website/public/zh/ChapterFour/0300~0399/0363.Max-Sum-of-Rectangle-No-Larger-Than-K/index.html index eb2a7d538..6438733b3 100644 --- a/website/public/zh/ChapterFour/0300~0399/0363.Max-Sum-of-Rectangle-No-Larger-Than-K/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0363.Max-Sum-of-Rectangle-No-Larger-Than-K/index.html @@ -12438,7 +12438,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0367.Valid-Perfect-Square/index.html b/website/public/zh/ChapterFour/0300~0399/0367.Valid-Perfect-Square/index.html index adb50790e..a8b44f512 100644 --- a/website/public/zh/ChapterFour/0300~0399/0367.Valid-Perfect-Square/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0367.Valid-Perfect-Square/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0368.Largest-Divisible-Subset/index.html b/website/public/zh/ChapterFour/0300~0399/0368.Largest-Divisible-Subset/index.html index 0c4628b16..96fe5464f 100644 --- a/website/public/zh/ChapterFour/0300~0399/0368.Largest-Divisible-Subset/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0368.Largest-Divisible-Subset/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0371.Sum-of-Two-Integers/index.html b/website/public/zh/ChapterFour/0300~0399/0371.Sum-of-Two-Integers/index.html index 12bee80bf..ea3e1396b 100644 --- a/website/public/zh/ChapterFour/0300~0399/0371.Sum-of-Two-Integers/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0371.Sum-of-Two-Integers/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0372.Super-Pow/index.html b/website/public/zh/ChapterFour/0300~0399/0372.Super-Pow/index.html index 0d02a8691..b5aa27391 100644 --- a/website/public/zh/ChapterFour/0300~0399/0372.Super-Pow/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0372.Super-Pow/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0373.Find-K-Pairs-with-Smallest-Sums/index.html b/website/public/zh/ChapterFour/0300~0399/0373.Find-K-Pairs-with-Smallest-Sums/index.html index 9f450490e..cea33c0b4 100644 --- a/website/public/zh/ChapterFour/0300~0399/0373.Find-K-Pairs-with-Smallest-Sums/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0373.Find-K-Pairs-with-Smallest-Sums/index.html @@ -12419,7 +12419,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0374.Guess-Number-Higher-or-Lower/index.html b/website/public/zh/ChapterFour/0300~0399/0374.Guess-Number-Higher-or-Lower/index.html index 0de793ee6..e4405b078 100644 --- a/website/public/zh/ChapterFour/0300~0399/0374.Guess-Number-Higher-or-Lower/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0374.Guess-Number-Higher-or-Lower/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0376.Wiggle-Subsequence/index.html b/website/public/zh/ChapterFour/0300~0399/0376.Wiggle-Subsequence/index.html index d17fce000..2272254aa 100644 --- a/website/public/zh/ChapterFour/0300~0399/0376.Wiggle-Subsequence/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0376.Wiggle-Subsequence/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0377.Combination-Sum-IV/index.html b/website/public/zh/ChapterFour/0300~0399/0377.Combination-Sum-IV/index.html index 47a4f3e2b..9a9136eeb 100644 --- a/website/public/zh/ChapterFour/0300~0399/0377.Combination-Sum-IV/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0377.Combination-Sum-IV/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0378.Kth-Smallest-Element-in-a-Sorted-Matrix/index.html b/website/public/zh/ChapterFour/0300~0399/0378.Kth-Smallest-Element-in-a-Sorted-Matrix/index.html index 27325d809..06651a415 100644 --- a/website/public/zh/ChapterFour/0300~0399/0378.Kth-Smallest-Element-in-a-Sorted-Matrix/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0378.Kth-Smallest-Element-in-a-Sorted-Matrix/index.html @@ -12430,7 +12430,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0382.Linked-List-Random-Node/index.html b/website/public/zh/ChapterFour/0300~0399/0382.Linked-List-Random-Node/index.html index ee51e8d3e..d957d25d4 100644 --- a/website/public/zh/ChapterFour/0300~0399/0382.Linked-List-Random-Node/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0382.Linked-List-Random-Node/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0383.Ransom-Note/index.html b/website/public/zh/ChapterFour/0300~0399/0383.Ransom-Note/index.html index 85a48f924..e0655da91 100644 --- a/website/public/zh/ChapterFour/0300~0399/0383.Ransom-Note/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0383.Ransom-Note/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0384.Shuffle-an-Array/index.html b/website/public/zh/ChapterFour/0300~0399/0384.Shuffle-an-Array/index.html index e0f4bb5d8..d5509cb81 100644 --- a/website/public/zh/ChapterFour/0300~0399/0384.Shuffle-an-Array/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0384.Shuffle-an-Array/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0385.Mini-Parser/index.html b/website/public/zh/ChapterFour/0300~0399/0385.Mini-Parser/index.html index 2a16fe532..06622351e 100644 --- a/website/public/zh/ChapterFour/0300~0399/0385.Mini-Parser/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0385.Mini-Parser/index.html @@ -12472,7 +12472,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0386.Lexicographical-Numbers/index.html b/website/public/zh/ChapterFour/0300~0399/0386.Lexicographical-Numbers/index.html index 97bcf858f..9d24deb2b 100644 --- a/website/public/zh/ChapterFour/0300~0399/0386.Lexicographical-Numbers/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0386.Lexicographical-Numbers/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0387.First-Unique-Character-in-a-String/index.html b/website/public/zh/ChapterFour/0300~0399/0387.First-Unique-Character-in-a-String/index.html index a255758c8..f4649c727 100644 --- a/website/public/zh/ChapterFour/0300~0399/0387.First-Unique-Character-in-a-String/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0387.First-Unique-Character-in-a-String/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0389.Find-the-Difference/index.html b/website/public/zh/ChapterFour/0300~0399/0389.Find-the-Difference/index.html index 406b1f7cd..5551c2c56 100644 --- a/website/public/zh/ChapterFour/0300~0399/0389.Find-the-Difference/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0389.Find-the-Difference/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0390.Elimination-Game/index.html b/website/public/zh/ChapterFour/0300~0399/0390.Elimination-Game/index.html index 67355ccdb..531fe6631 100644 --- a/website/public/zh/ChapterFour/0300~0399/0390.Elimination-Game/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0390.Elimination-Game/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0391.Perfect-Rectangle/index.html b/website/public/zh/ChapterFour/0300~0399/0391.Perfect-Rectangle/index.html index 63b1a4cca..ce0d8f87f 100644 --- a/website/public/zh/ChapterFour/0300~0399/0391.Perfect-Rectangle/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0391.Perfect-Rectangle/index.html @@ -12413,7 +12413,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0392.Is-Subsequence/index.html b/website/public/zh/ChapterFour/0300~0399/0392.Is-Subsequence/index.html index e81fd80db..7232687de 100644 --- a/website/public/zh/ChapterFour/0300~0399/0392.Is-Subsequence/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0392.Is-Subsequence/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0393.UTF-8-Validation/index.html b/website/public/zh/ChapterFour/0300~0399/0393.UTF-8-Validation/index.html index c4c76803e..14c300d5a 100644 --- a/website/public/zh/ChapterFour/0300~0399/0393.UTF-8-Validation/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0393.UTF-8-Validation/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0394.Decode-String/index.html b/website/public/zh/ChapterFour/0300~0399/0394.Decode-String/index.html index 97acd0b7f..6d0ff45a8 100644 --- a/website/public/zh/ChapterFour/0300~0399/0394.Decode-String/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0394.Decode-String/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0395.Longest-Substring-with-At-Least-K-Repeating-Characters/index.html b/website/public/zh/ChapterFour/0300~0399/0395.Longest-Substring-with-At-Least-K-Repeating-Characters/index.html index 71a8e3ffb..95dc0f6d1 100644 --- a/website/public/zh/ChapterFour/0300~0399/0395.Longest-Substring-with-At-Least-K-Repeating-Characters/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0395.Longest-Substring-with-At-Least-K-Repeating-Characters/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0396.Rotate-Function/index.html b/website/public/zh/ChapterFour/0300~0399/0396.Rotate-Function/index.html index 4c2d50eb6..0fc467ae6 100644 --- a/website/public/zh/ChapterFour/0300~0399/0396.Rotate-Function/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0396.Rotate-Function/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0397.Integer-Replacement/index.html b/website/public/zh/ChapterFour/0300~0399/0397.Integer-Replacement/index.html index 6addf39ec..ce8b28f56 100644 --- a/website/public/zh/ChapterFour/0300~0399/0397.Integer-Replacement/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0397.Integer-Replacement/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/0399.Evaluate-Division/index.html b/website/public/zh/ChapterFour/0300~0399/0399.Evaluate-Division/index.html index f3dafc3bd..fc13cb3e5 100644 --- a/website/public/zh/ChapterFour/0300~0399/0399.Evaluate-Division/index.html +++ b/website/public/zh/ChapterFour/0300~0399/0399.Evaluate-Division/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0300~0399/index.html b/website/public/zh/ChapterFour/0300~0399/index.html index f4e1906ff..b8c69bd49 100644 --- a/website/public/zh/ChapterFour/0300~0399/index.html +++ b/website/public/zh/ChapterFour/0300~0399/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0400.Nth-Digit/index.html b/website/public/zh/ChapterFour/0400~0499/0400.Nth-Digit/index.html index f14559a04..25288522e 100644 --- a/website/public/zh/ChapterFour/0400~0499/0400.Nth-Digit/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0400.Nth-Digit/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0401.Binary-Watch/index.html b/website/public/zh/ChapterFour/0400~0499/0401.Binary-Watch/index.html index bcb724875..4819e7ff0 100644 --- a/website/public/zh/ChapterFour/0400~0499/0401.Binary-Watch/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0401.Binary-Watch/index.html @@ -12471,7 +12471,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0402.Remove-K-Digits/index.html b/website/public/zh/ChapterFour/0400~0499/0402.Remove-K-Digits/index.html index 9df1ada88..302e7fb1e 100644 --- a/website/public/zh/ChapterFour/0400~0499/0402.Remove-K-Digits/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0402.Remove-K-Digits/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0404.Sum-of-Left-Leaves/index.html b/website/public/zh/ChapterFour/0400~0499/0404.Sum-of-Left-Leaves/index.html index 47012f6ad..482b4fcfc 100644 --- a/website/public/zh/ChapterFour/0400~0499/0404.Sum-of-Left-Leaves/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0404.Sum-of-Left-Leaves/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0405.Convert-a-Number-to-Hexadecimal/index.html b/website/public/zh/ChapterFour/0400~0499/0405.Convert-a-Number-to-Hexadecimal/index.html index aaf392688..4d0e5f39c 100644 --- a/website/public/zh/ChapterFour/0400~0499/0405.Convert-a-Number-to-Hexadecimal/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0405.Convert-a-Number-to-Hexadecimal/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0409.Longest-Palindrome/index.html b/website/public/zh/ChapterFour/0400~0499/0409.Longest-Palindrome/index.html index adcdceaa8..868307203 100644 --- a/website/public/zh/ChapterFour/0400~0499/0409.Longest-Palindrome/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0409.Longest-Palindrome/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0410.Split-Array-Largest-Sum/index.html b/website/public/zh/ChapterFour/0400~0499/0410.Split-Array-Largest-Sum/index.html index 4aeac0028..339f2bf86 100644 --- a/website/public/zh/ChapterFour/0400~0499/0410.Split-Array-Largest-Sum/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0410.Split-Array-Largest-Sum/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0412.Fizz-Buzz/index.html b/website/public/zh/ChapterFour/0400~0499/0412.Fizz-Buzz/index.html index 0db057ef3..746b3d086 100644 --- a/website/public/zh/ChapterFour/0400~0499/0412.Fizz-Buzz/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0412.Fizz-Buzz/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0413.Arithmetic-Slices/index.html b/website/public/zh/ChapterFour/0400~0499/0413.Arithmetic-Slices/index.html index 10d6887a9..2d8a99e2a 100644 --- a/website/public/zh/ChapterFour/0400~0499/0413.Arithmetic-Slices/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0413.Arithmetic-Slices/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0414.Third-Maximum-Number/index.html b/website/public/zh/ChapterFour/0400~0499/0414.Third-Maximum-Number/index.html index d2d0d1cf7..35a8a5bbc 100644 --- a/website/public/zh/ChapterFour/0400~0499/0414.Third-Maximum-Number/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0414.Third-Maximum-Number/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0416.Partition-Equal-Subset-Sum/index.html b/website/public/zh/ChapterFour/0400~0499/0416.Partition-Equal-Subset-Sum/index.html index 2c01af8b4..d874d1c5f 100644 --- a/website/public/zh/ChapterFour/0400~0499/0416.Partition-Equal-Subset-Sum/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0416.Partition-Equal-Subset-Sum/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0417.Pacific-Atlantic-Water-Flow/index.html b/website/public/zh/ChapterFour/0400~0499/0417.Pacific-Atlantic-Water-Flow/index.html index 39e6b0b39..c81629347 100644 --- a/website/public/zh/ChapterFour/0400~0499/0417.Pacific-Atlantic-Water-Flow/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0417.Pacific-Atlantic-Water-Flow/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0419.Battleships-in-a-Board/index.html b/website/public/zh/ChapterFour/0400~0499/0419.Battleships-in-a-Board/index.html index 82ca4efa1..2aee25481 100644 --- a/website/public/zh/ChapterFour/0400~0499/0419.Battleships-in-a-Board/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0419.Battleships-in-a-Board/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0421.Maximum-XOR-of-Two-Numbers-in-an-Array/index.html b/website/public/zh/ChapterFour/0400~0499/0421.Maximum-XOR-of-Two-Numbers-in-an-Array/index.html index 89ffd9f5a..5585cf323 100644 --- a/website/public/zh/ChapterFour/0400~0499/0421.Maximum-XOR-of-Two-Numbers-in-an-Array/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0421.Maximum-XOR-of-Two-Numbers-in-an-Array/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0423.Reconstruct-Original-Digits-from-English/index.html b/website/public/zh/ChapterFour/0400~0499/0423.Reconstruct-Original-Digits-from-English/index.html index a24276744..bdb7f6531 100644 --- a/website/public/zh/ChapterFour/0400~0499/0423.Reconstruct-Original-Digits-from-English/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0423.Reconstruct-Original-Digits-from-English/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0424.Longest-Repeating-Character-Replacement/index.html b/website/public/zh/ChapterFour/0400~0499/0424.Longest-Repeating-Character-Replacement/index.html index 0fe6b4fb8..1d92537b3 100644 --- a/website/public/zh/ChapterFour/0400~0499/0424.Longest-Repeating-Character-Replacement/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0424.Longest-Repeating-Character-Replacement/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0429.N-ary-Tree-Level-Order-Traversal/index.html b/website/public/zh/ChapterFour/0400~0499/0429.N-ary-Tree-Level-Order-Traversal/index.html index c2501777f..fca0a73bd 100644 --- a/website/public/zh/ChapterFour/0400~0499/0429.N-ary-Tree-Level-Order-Traversal/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0429.N-ary-Tree-Level-Order-Traversal/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0433.Minimum-Genetic-Mutation/index.html b/website/public/zh/ChapterFour/0400~0499/0433.Minimum-Genetic-Mutation/index.html index 75da0b8dc..8f964ab6d 100644 --- a/website/public/zh/ChapterFour/0400~0499/0433.Minimum-Genetic-Mutation/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0433.Minimum-Genetic-Mutation/index.html @@ -12475,7 +12475,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0434.Number-of-Segments-in-a-String/index.html b/website/public/zh/ChapterFour/0400~0499/0434.Number-of-Segments-in-a-String/index.html index ed9cd6d2d..6f521fde7 100644 --- a/website/public/zh/ChapterFour/0400~0499/0434.Number-of-Segments-in-a-String/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0434.Number-of-Segments-in-a-String/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0435.Non-overlapping-Intervals/index.html b/website/public/zh/ChapterFour/0400~0499/0435.Non-overlapping-Intervals/index.html index a988f6386..1471d30c0 100644 --- a/website/public/zh/ChapterFour/0400~0499/0435.Non-overlapping-Intervals/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0435.Non-overlapping-Intervals/index.html @@ -12429,7 +12429,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0436.Find-Right-Interval/index.html b/website/public/zh/ChapterFour/0400~0499/0436.Find-Right-Interval/index.html index c162ded1c..cbd362ec6 100644 --- a/website/public/zh/ChapterFour/0400~0499/0436.Find-Right-Interval/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0436.Find-Right-Interval/index.html @@ -12432,7 +12432,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0437.Path-Sum-III/index.html b/website/public/zh/ChapterFour/0400~0499/0437.Path-Sum-III/index.html index af300a456..e66b12dab 100644 --- a/website/public/zh/ChapterFour/0400~0499/0437.Path-Sum-III/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0437.Path-Sum-III/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0438.Find-All-Anagrams-in-a-String/index.html b/website/public/zh/ChapterFour/0400~0499/0438.Find-All-Anagrams-in-a-String/index.html index 585efdc8d..8ccefaf75 100644 --- a/website/public/zh/ChapterFour/0400~0499/0438.Find-All-Anagrams-in-a-String/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0438.Find-All-Anagrams-in-a-String/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0441.Arranging-Coins/index.html b/website/public/zh/ChapterFour/0400~0499/0441.Arranging-Coins/index.html index 1452f1aba..2f379d750 100644 --- a/website/public/zh/ChapterFour/0400~0499/0441.Arranging-Coins/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0441.Arranging-Coins/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0445.Add-Two-Numbers-II/index.html b/website/public/zh/ChapterFour/0400~0499/0445.Add-Two-Numbers-II/index.html index ea2c9a8c2..613fbf7c3 100644 --- a/website/public/zh/ChapterFour/0400~0499/0445.Add-Two-Numbers-II/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0445.Add-Two-Numbers-II/index.html @@ -12476,7 +12476,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0447.Number-of-Boomerangs/index.html b/website/public/zh/ChapterFour/0400~0499/0447.Number-of-Boomerangs/index.html index e89f294f4..20dffcc58 100644 --- a/website/public/zh/ChapterFour/0400~0499/0447.Number-of-Boomerangs/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0447.Number-of-Boomerangs/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0448.Find-All-Numbers-Disappeared-in-an-Array/index.html b/website/public/zh/ChapterFour/0400~0499/0448.Find-All-Numbers-Disappeared-in-an-Array/index.html index 6a1accf07..ffeb63b73 100644 --- a/website/public/zh/ChapterFour/0400~0499/0448.Find-All-Numbers-Disappeared-in-an-Array/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0448.Find-All-Numbers-Disappeared-in-an-Array/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0451.Sort-Characters-By-Frequency/index.html b/website/public/zh/ChapterFour/0400~0499/0451.Sort-Characters-By-Frequency/index.html index 19bce2603..15daff2f3 100644 --- a/website/public/zh/ChapterFour/0400~0499/0451.Sort-Characters-By-Frequency/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0451.Sort-Characters-By-Frequency/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0453.Minimum-Moves-to-Equal-Array-Elements/index.html b/website/public/zh/ChapterFour/0400~0499/0453.Minimum-Moves-to-Equal-Array-Elements/index.html index 024d864bf..8f7b458c0 100644 --- a/website/public/zh/ChapterFour/0400~0499/0453.Minimum-Moves-to-Equal-Array-Elements/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0453.Minimum-Moves-to-Equal-Array-Elements/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0454.4Sum-II/index.html b/website/public/zh/ChapterFour/0400~0499/0454.4Sum-II/index.html index 965f1a770..318a1fce2 100644 --- a/website/public/zh/ChapterFour/0400~0499/0454.4Sum-II/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0454.4Sum-II/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0455.Assign-Cookies/index.html b/website/public/zh/ChapterFour/0400~0499/0455.Assign-Cookies/index.html index 25daa53e8..c88737995 100644 --- a/website/public/zh/ChapterFour/0400~0499/0455.Assign-Cookies/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0455.Assign-Cookies/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0456.132-Pattern/index.html b/website/public/zh/ChapterFour/0400~0499/0456.132-Pattern/index.html index 5a84db57d..8ed9fec07 100644 --- a/website/public/zh/ChapterFour/0400~0499/0456.132-Pattern/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0456.132-Pattern/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0457.Circular-Array-Loop/index.html b/website/public/zh/ChapterFour/0400~0499/0457.Circular-Array-Loop/index.html index dd40ae55f..bc9fec4b9 100644 --- a/website/public/zh/ChapterFour/0400~0499/0457.Circular-Array-Loop/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0457.Circular-Array-Loop/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0458.Poor-Pigs/index.html b/website/public/zh/ChapterFour/0400~0499/0458.Poor-Pigs/index.html index d2b1a6085..12ef53431 100644 --- a/website/public/zh/ChapterFour/0400~0499/0458.Poor-Pigs/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0458.Poor-Pigs/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0460.LFU-Cache/index.html b/website/public/zh/ChapterFour/0400~0499/0460.LFU-Cache/index.html index c6b85133c..3c9286421 100644 --- a/website/public/zh/ChapterFour/0400~0499/0460.LFU-Cache/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0460.LFU-Cache/index.html @@ -12437,7 +12437,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0461.Hamming-Distance/index.html b/website/public/zh/ChapterFour/0400~0499/0461.Hamming-Distance/index.html index 6ebb66981..4f03785ac 100644 --- a/website/public/zh/ChapterFour/0400~0499/0461.Hamming-Distance/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0461.Hamming-Distance/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0462.Minimum-Moves-to-Equal-Array-Elements-II/index.html b/website/public/zh/ChapterFour/0400~0499/0462.Minimum-Moves-to-Equal-Array-Elements-II/index.html index aedfec094..91f4be728 100644 --- a/website/public/zh/ChapterFour/0400~0499/0462.Minimum-Moves-to-Equal-Array-Elements-II/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0462.Minimum-Moves-to-Equal-Array-Elements-II/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0463.Island-Perimeter/index.html b/website/public/zh/ChapterFour/0400~0499/0463.Island-Perimeter/index.html index 05a5b419f..f41ea5a5a 100644 --- a/website/public/zh/ChapterFour/0400~0499/0463.Island-Perimeter/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0463.Island-Perimeter/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0470.Implement-Rand10-Using-Rand7/index.html b/website/public/zh/ChapterFour/0400~0499/0470.Implement-Rand10-Using-Rand7/index.html index 7245d9423..c8a3de380 100644 --- a/website/public/zh/ChapterFour/0400~0499/0470.Implement-Rand10-Using-Rand7/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0470.Implement-Rand10-Using-Rand7/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0473.Matchsticks-to-Square/index.html b/website/public/zh/ChapterFour/0400~0499/0473.Matchsticks-to-Square/index.html index 38926f4fb..9b5757bf5 100644 --- a/website/public/zh/ChapterFour/0400~0499/0473.Matchsticks-to-Square/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0473.Matchsticks-to-Square/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0474.Ones-and-Zeroes/index.html b/website/public/zh/ChapterFour/0400~0499/0474.Ones-and-Zeroes/index.html index 6f357c7b8..e526101b2 100644 --- a/website/public/zh/ChapterFour/0400~0499/0474.Ones-and-Zeroes/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0474.Ones-and-Zeroes/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0475.Heaters/index.html b/website/public/zh/ChapterFour/0400~0499/0475.Heaters/index.html index 68201281a..e9e3e2a9d 100644 --- a/website/public/zh/ChapterFour/0400~0499/0475.Heaters/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0475.Heaters/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0476.Number-Complement/index.html b/website/public/zh/ChapterFour/0400~0499/0476.Number-Complement/index.html index 41511e3a2..8f21287bc 100644 --- a/website/public/zh/ChapterFour/0400~0499/0476.Number-Complement/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0476.Number-Complement/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0477.Total-Hamming-Distance/index.html b/website/public/zh/ChapterFour/0400~0499/0477.Total-Hamming-Distance/index.html index 72905dbde..e68947269 100644 --- a/website/public/zh/ChapterFour/0400~0499/0477.Total-Hamming-Distance/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0477.Total-Hamming-Distance/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0478.Generate-Random-Point-in-a-Circle/index.html b/website/public/zh/ChapterFour/0400~0499/0478.Generate-Random-Point-in-a-Circle/index.html index 564982907..5545636b1 100644 --- a/website/public/zh/ChapterFour/0400~0499/0478.Generate-Random-Point-in-a-Circle/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0478.Generate-Random-Point-in-a-Circle/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0480.Sliding-Window-Median/index.html b/website/public/zh/ChapterFour/0400~0499/0480.Sliding-Window-Median/index.html index ffd65a6dc..62875332a 100644 --- a/website/public/zh/ChapterFour/0400~0499/0480.Sliding-Window-Median/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0480.Sliding-Window-Median/index.html @@ -12563,7 +12563,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0483.Smallest-Good-Base/index.html b/website/public/zh/ChapterFour/0400~0499/0483.Smallest-Good-Base/index.html index e1a7040ab..8a740a36f 100644 --- a/website/public/zh/ChapterFour/0400~0499/0483.Smallest-Good-Base/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0483.Smallest-Good-Base/index.html @@ -12422,7 +12422,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0485.Max-Consecutive-Ones/index.html b/website/public/zh/ChapterFour/0400~0499/0485.Max-Consecutive-Ones/index.html index 94c204225..47b2e0159 100644 --- a/website/public/zh/ChapterFour/0400~0499/0485.Max-Consecutive-Ones/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0485.Max-Consecutive-Ones/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0488.Zuma-Game/index.html b/website/public/zh/ChapterFour/0400~0499/0488.Zuma-Game/index.html index e1c279382..9ed431b83 100644 --- a/website/public/zh/ChapterFour/0400~0499/0488.Zuma-Game/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0488.Zuma-Game/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0491.Non-decreasing-Subsequences/index.html b/website/public/zh/ChapterFour/0400~0499/0491.Non-decreasing-Subsequences/index.html index dba3f66e3..fb8297f1b 100644 --- a/website/public/zh/ChapterFour/0400~0499/0491.Non-decreasing-Subsequences/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0491.Non-decreasing-Subsequences/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0492.Construct-the-Rectangle/index.html b/website/public/zh/ChapterFour/0400~0499/0492.Construct-the-Rectangle/index.html index 06580c341..f8785b6ef 100644 --- a/website/public/zh/ChapterFour/0400~0499/0492.Construct-the-Rectangle/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0492.Construct-the-Rectangle/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0493.Reverse-Pairs/index.html b/website/public/zh/ChapterFour/0400~0499/0493.Reverse-Pairs/index.html index 44d86b9e0..fa0654dd2 100644 --- a/website/public/zh/ChapterFour/0400~0499/0493.Reverse-Pairs/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0493.Reverse-Pairs/index.html @@ -12457,7 +12457,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0494.Target-Sum/index.html b/website/public/zh/ChapterFour/0400~0499/0494.Target-Sum/index.html index 06f1fa411..bb3e46b01 100644 --- a/website/public/zh/ChapterFour/0400~0499/0494.Target-Sum/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0494.Target-Sum/index.html @@ -12408,7 +12408,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0495.Teemo-Attacking/index.html b/website/public/zh/ChapterFour/0400~0499/0495.Teemo-Attacking/index.html index d4eef410c..05140a9d6 100644 --- a/website/public/zh/ChapterFour/0400~0499/0495.Teemo-Attacking/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0495.Teemo-Attacking/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0496.Next-Greater-Element-I/index.html b/website/public/zh/ChapterFour/0400~0499/0496.Next-Greater-Element-I/index.html index 7f6235696..254b0a738 100644 --- a/website/public/zh/ChapterFour/0400~0499/0496.Next-Greater-Element-I/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0496.Next-Greater-Element-I/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0497.Random-Point-in-Non-overlapping-Rectangles/index.html b/website/public/zh/ChapterFour/0400~0499/0497.Random-Point-in-Non-overlapping-Rectangles/index.html index 4af4eed97..e8bfe59b1 100644 --- a/website/public/zh/ChapterFour/0400~0499/0497.Random-Point-in-Non-overlapping-Rectangles/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0497.Random-Point-in-Non-overlapping-Rectangles/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/0498.Diagonal-Traverse/index.html b/website/public/zh/ChapterFour/0400~0499/0498.Diagonal-Traverse/index.html index afcd92019..d7d536dbf 100644 --- a/website/public/zh/ChapterFour/0400~0499/0498.Diagonal-Traverse/index.html +++ b/website/public/zh/ChapterFour/0400~0499/0498.Diagonal-Traverse/index.html @@ -12489,7 +12489,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0400~0499/index.html b/website/public/zh/ChapterFour/0400~0499/index.html index 7f9c5af0e..6423a7b7f 100644 --- a/website/public/zh/ChapterFour/0400~0499/index.html +++ b/website/public/zh/ChapterFour/0400~0499/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0500.Keyboard-Row/index.html b/website/public/zh/ChapterFour/0500~0599/0500.Keyboard-Row/index.html index ba1dd10d7..32a0ff304 100644 --- a/website/public/zh/ChapterFour/0500~0599/0500.Keyboard-Row/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0500.Keyboard-Row/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0503.Next-Greater-Element-II/index.html b/website/public/zh/ChapterFour/0500~0599/0503.Next-Greater-Element-II/index.html index 6a1a7a089..fd252c8d4 100644 --- a/website/public/zh/ChapterFour/0500~0599/0503.Next-Greater-Element-II/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0503.Next-Greater-Element-II/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0504.Base-7/index.html b/website/public/zh/ChapterFour/0500~0599/0504.Base-7/index.html index 4ee1ec5c5..4ade97fdc 100644 --- a/website/public/zh/ChapterFour/0500~0599/0504.Base-7/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0504.Base-7/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0506.Relative-Ranks/index.html b/website/public/zh/ChapterFour/0500~0599/0506.Relative-Ranks/index.html index aaed232d2..fa16c6cf1 100644 --- a/website/public/zh/ChapterFour/0500~0599/0506.Relative-Ranks/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0506.Relative-Ranks/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0507.Perfect-Number/index.html b/website/public/zh/ChapterFour/0500~0599/0507.Perfect-Number/index.html index f0840fbcc..fd26a58f2 100644 --- a/website/public/zh/ChapterFour/0500~0599/0507.Perfect-Number/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0507.Perfect-Number/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0508.Most-Frequent-Subtree-Sum/index.html b/website/public/zh/ChapterFour/0500~0599/0508.Most-Frequent-Subtree-Sum/index.html index 2fb682b73..7a686aaa1 100644 --- a/website/public/zh/ChapterFour/0500~0599/0508.Most-Frequent-Subtree-Sum/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0508.Most-Frequent-Subtree-Sum/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0509.Fibonacci-Number/index.html b/website/public/zh/ChapterFour/0500~0599/0509.Fibonacci-Number/index.html index e10bb432a..092bc7446 100644 --- a/website/public/zh/ChapterFour/0500~0599/0509.Fibonacci-Number/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0509.Fibonacci-Number/index.html @@ -12480,7 +12480,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0513.Find-Bottom-Left-Tree-Value/index.html b/website/public/zh/ChapterFour/0500~0599/0513.Find-Bottom-Left-Tree-Value/index.html index 8a4013447..797f334ef 100644 --- a/website/public/zh/ChapterFour/0500~0599/0513.Find-Bottom-Left-Tree-Value/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0513.Find-Bottom-Left-Tree-Value/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0515.Find-Largest-Value-in-Each-Tree-Row/index.html b/website/public/zh/ChapterFour/0500~0599/0515.Find-Largest-Value-in-Each-Tree-Row/index.html index abe411691..bb02854f9 100644 --- a/website/public/zh/ChapterFour/0500~0599/0515.Find-Largest-Value-in-Each-Tree-Row/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0515.Find-Largest-Value-in-Each-Tree-Row/index.html @@ -12413,7 +12413,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0518.Coin-Change-II/index.html b/website/public/zh/ChapterFour/0500~0599/0518.Coin-Change-II/index.html index 2446aa94f..8fe788789 100644 --- a/website/public/zh/ChapterFour/0500~0599/0518.Coin-Change-II/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0518.Coin-Change-II/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0519.Random-Flip-Matrix/index.html b/website/public/zh/ChapterFour/0500~0599/0519.Random-Flip-Matrix/index.html index f4234f35b..588f78bea 100644 --- a/website/public/zh/ChapterFour/0500~0599/0519.Random-Flip-Matrix/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0519.Random-Flip-Matrix/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0520.Detect-Capital/index.html b/website/public/zh/ChapterFour/0500~0599/0520.Detect-Capital/index.html index 715d8d842..6570838d7 100644 --- a/website/public/zh/ChapterFour/0500~0599/0520.Detect-Capital/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0520.Detect-Capital/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0523.Continuous-Subarray-Sum/index.html b/website/public/zh/ChapterFour/0500~0599/0523.Continuous-Subarray-Sum/index.html index d73453514..189e3c0e0 100644 --- a/website/public/zh/ChapterFour/0500~0599/0523.Continuous-Subarray-Sum/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0523.Continuous-Subarray-Sum/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0524.Longest-Word-in-Dictionary-through-Deleting/index.html b/website/public/zh/ChapterFour/0500~0599/0524.Longest-Word-in-Dictionary-through-Deleting/index.html index c06eae2b9..1c33a1efb 100644 --- a/website/public/zh/ChapterFour/0500~0599/0524.Longest-Word-in-Dictionary-through-Deleting/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0524.Longest-Word-in-Dictionary-through-Deleting/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0525.Contiguous-Array/index.html b/website/public/zh/ChapterFour/0500~0599/0525.Contiguous-Array/index.html index e2a08a2b5..03c323ebb 100644 --- a/website/public/zh/ChapterFour/0500~0599/0525.Contiguous-Array/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0525.Contiguous-Array/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0526.Beautiful-Arrangement/index.html b/website/public/zh/ChapterFour/0500~0599/0526.Beautiful-Arrangement/index.html index 3721eb95f..e240606a1 100644 --- a/website/public/zh/ChapterFour/0500~0599/0526.Beautiful-Arrangement/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0526.Beautiful-Arrangement/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0528.Random-Pick-with-Weight/index.html b/website/public/zh/ChapterFour/0500~0599/0528.Random-Pick-with-Weight/index.html index 8405680d8..6de5975bd 100644 --- a/website/public/zh/ChapterFour/0500~0599/0528.Random-Pick-with-Weight/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0528.Random-Pick-with-Weight/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0529.Minesweeper/index.html b/website/public/zh/ChapterFour/0500~0599/0529.Minesweeper/index.html index 0f93ee8ad..7f14b8b2f 100644 --- a/website/public/zh/ChapterFour/0500~0599/0529.Minesweeper/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0529.Minesweeper/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0530.Minimum-Absolute-Difference-in-BST/index.html b/website/public/zh/ChapterFour/0500~0599/0530.Minimum-Absolute-Difference-in-BST/index.html index 324ba65c8..7fc3ca9e3 100644 --- a/website/public/zh/ChapterFour/0500~0599/0530.Minimum-Absolute-Difference-in-BST/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0530.Minimum-Absolute-Difference-in-BST/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0532.K-diff-Pairs-in-an-Array/index.html b/website/public/zh/ChapterFour/0500~0599/0532.K-diff-Pairs-in-an-Array/index.html index 0c762aa03..c03846026 100644 --- a/website/public/zh/ChapterFour/0500~0599/0532.K-diff-Pairs-in-an-Array/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0532.K-diff-Pairs-in-an-Array/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0535.Encode-and-Decode-TinyURL/index.html b/website/public/zh/ChapterFour/0500~0599/0535.Encode-and-Decode-TinyURL/index.html index 1ab06430c..cef5c34fe 100644 --- a/website/public/zh/ChapterFour/0500~0599/0535.Encode-and-Decode-TinyURL/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0535.Encode-and-Decode-TinyURL/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0537.Complex-Number-Multiplication/index.html b/website/public/zh/ChapterFour/0500~0599/0537.Complex-Number-Multiplication/index.html index 27c109832..4c8007baa 100644 --- a/website/public/zh/ChapterFour/0500~0599/0537.Complex-Number-Multiplication/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0537.Complex-Number-Multiplication/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0538.Convert-BST-to-Greater-Tree/index.html b/website/public/zh/ChapterFour/0500~0599/0538.Convert-BST-to-Greater-Tree/index.html index a234451e4..4b4c8c973 100644 --- a/website/public/zh/ChapterFour/0500~0599/0538.Convert-BST-to-Greater-Tree/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0538.Convert-BST-to-Greater-Tree/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0540.Single-Element-in-a-Sorted-Array/index.html b/website/public/zh/ChapterFour/0500~0599/0540.Single-Element-in-a-Sorted-Array/index.html index eb21058f8..af40fff99 100644 --- a/website/public/zh/ChapterFour/0500~0599/0540.Single-Element-in-a-Sorted-Array/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0540.Single-Element-in-a-Sorted-Array/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0541.Reverse-String-II/index.html b/website/public/zh/ChapterFour/0500~0599/0541.Reverse-String-II/index.html index 3e0ae2099..0adc965ef 100644 --- a/website/public/zh/ChapterFour/0500~0599/0541.Reverse-String-II/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0541.Reverse-String-II/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0542.01-Matrix/index.html b/website/public/zh/ChapterFour/0500~0599/0542.01-Matrix/index.html index 59c44437e..beaa28474 100644 --- a/website/public/zh/ChapterFour/0500~0599/0542.01-Matrix/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0542.01-Matrix/index.html @@ -12503,7 +12503,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0543.Diameter-of-Binary-Tree/index.html b/website/public/zh/ChapterFour/0500~0599/0543.Diameter-of-Binary-Tree/index.html index f068307e9..0c4bae2e1 100644 --- a/website/public/zh/ChapterFour/0500~0599/0543.Diameter-of-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0543.Diameter-of-Binary-Tree/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0547.Number-of-Provinces/index.html b/website/public/zh/ChapterFour/0500~0599/0547.Number-of-Provinces/index.html index 1f5e85d9d..adeb1ad88 100644 --- a/website/public/zh/ChapterFour/0500~0599/0547.Number-of-Provinces/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0547.Number-of-Provinces/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0551.Student-Attendance-Record-I/index.html b/website/public/zh/ChapterFour/0500~0599/0551.Student-Attendance-Record-I/index.html index 392021a48..b2974fd70 100644 --- a/website/public/zh/ChapterFour/0500~0599/0551.Student-Attendance-Record-I/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0551.Student-Attendance-Record-I/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0554.Brick-Wall/index.html b/website/public/zh/ChapterFour/0500~0599/0554.Brick-Wall/index.html index 8f4f6573a..ab447a581 100644 --- a/website/public/zh/ChapterFour/0500~0599/0554.Brick-Wall/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0554.Brick-Wall/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0557.Reverse-Words-in-a-String-III/index.html b/website/public/zh/ChapterFour/0500~0599/0557.Reverse-Words-in-a-String-III/index.html index 38acebe90..c0e1b2c78 100644 --- a/website/public/zh/ChapterFour/0500~0599/0557.Reverse-Words-in-a-String-III/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0557.Reverse-Words-in-a-String-III/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0559.Maximum-Depth-of-N-ary-Tree/index.html b/website/public/zh/ChapterFour/0500~0599/0559.Maximum-Depth-of-N-ary-Tree/index.html index 07fbc379d..f82c32bdd 100644 --- a/website/public/zh/ChapterFour/0500~0599/0559.Maximum-Depth-of-N-ary-Tree/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0559.Maximum-Depth-of-N-ary-Tree/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0560.Subarray-Sum-Equals-K/index.html b/website/public/zh/ChapterFour/0500~0599/0560.Subarray-Sum-Equals-K/index.html index eb38bcb62..315014ad6 100644 --- a/website/public/zh/ChapterFour/0500~0599/0560.Subarray-Sum-Equals-K/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0560.Subarray-Sum-Equals-K/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0561.Array-Partition/index.html b/website/public/zh/ChapterFour/0500~0599/0561.Array-Partition/index.html index 2a8a38a51..084a6df01 100644 --- a/website/public/zh/ChapterFour/0500~0599/0561.Array-Partition/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0561.Array-Partition/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0563.Binary-Tree-Tilt/index.html b/website/public/zh/ChapterFour/0500~0599/0563.Binary-Tree-Tilt/index.html index cd4a6d5a6..eb4e00e31 100644 --- a/website/public/zh/ChapterFour/0500~0599/0563.Binary-Tree-Tilt/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0563.Binary-Tree-Tilt/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0566.Reshape-the-Matrix/index.html b/website/public/zh/ChapterFour/0500~0599/0566.Reshape-the-Matrix/index.html index f96c2a91d..08c382654 100644 --- a/website/public/zh/ChapterFour/0500~0599/0566.Reshape-the-Matrix/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0566.Reshape-the-Matrix/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0567.Permutation-in-String/index.html b/website/public/zh/ChapterFour/0500~0599/0567.Permutation-in-String/index.html index 96084a9e1..53922831a 100644 --- a/website/public/zh/ChapterFour/0500~0599/0567.Permutation-in-String/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0567.Permutation-in-String/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0572.Subtree-of-Another-Tree/index.html b/website/public/zh/ChapterFour/0500~0599/0572.Subtree-of-Another-Tree/index.html index 087065802..84c6778bb 100644 --- a/website/public/zh/ChapterFour/0500~0599/0572.Subtree-of-Another-Tree/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0572.Subtree-of-Another-Tree/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0575.Distribute-Candies/index.html b/website/public/zh/ChapterFour/0500~0599/0575.Distribute-Candies/index.html index b93b29e20..7e3221568 100644 --- a/website/public/zh/ChapterFour/0500~0599/0575.Distribute-Candies/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0575.Distribute-Candies/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0576.Out-of-Boundary-Paths/index.html b/website/public/zh/ChapterFour/0500~0599/0576.Out-of-Boundary-Paths/index.html index 845bd51be..89346a90b 100644 --- a/website/public/zh/ChapterFour/0500~0599/0576.Out-of-Boundary-Paths/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0576.Out-of-Boundary-Paths/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0581.Shortest-Unsorted-Continuous-Subarray/index.html b/website/public/zh/ChapterFour/0500~0599/0581.Shortest-Unsorted-Continuous-Subarray/index.html index b3383345c..e49a9f786 100644 --- a/website/public/zh/ChapterFour/0500~0599/0581.Shortest-Unsorted-Continuous-Subarray/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0581.Shortest-Unsorted-Continuous-Subarray/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0583.Delete-Operation-for-Two-Strings/index.html b/website/public/zh/ChapterFour/0500~0599/0583.Delete-Operation-for-Two-Strings/index.html index 1110f5e4c..9af6538dd 100644 --- a/website/public/zh/ChapterFour/0500~0599/0583.Delete-Operation-for-Two-Strings/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0583.Delete-Operation-for-Two-Strings/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0589.N-ary-Tree-Preorder-Traversal/index.html b/website/public/zh/ChapterFour/0500~0599/0589.N-ary-Tree-Preorder-Traversal/index.html index 893f93122..9cb8f8817 100644 --- a/website/public/zh/ChapterFour/0500~0599/0589.N-ary-Tree-Preorder-Traversal/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0589.N-ary-Tree-Preorder-Traversal/index.html @@ -12389,7 +12389,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0594.Longest-Harmonious-Subsequence/index.html b/website/public/zh/ChapterFour/0500~0599/0594.Longest-Harmonious-Subsequence/index.html index f5d8a8f4a..9d04f3314 100644 --- a/website/public/zh/ChapterFour/0500~0599/0594.Longest-Harmonious-Subsequence/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0594.Longest-Harmonious-Subsequence/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0598.Range-Addition-II/index.html b/website/public/zh/ChapterFour/0500~0599/0598.Range-Addition-II/index.html index 0cf0226a5..354454c77 100644 --- a/website/public/zh/ChapterFour/0500~0599/0598.Range-Addition-II/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0598.Range-Addition-II/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/0599.Minimum-Index-Sum-of-Two-Lists/index.html b/website/public/zh/ChapterFour/0500~0599/0599.Minimum-Index-Sum-of-Two-Lists/index.html index 6a946821e..dd4e82366 100644 --- a/website/public/zh/ChapterFour/0500~0599/0599.Minimum-Index-Sum-of-Two-Lists/index.html +++ b/website/public/zh/ChapterFour/0500~0599/0599.Minimum-Index-Sum-of-Two-Lists/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0500~0599/index.html b/website/public/zh/ChapterFour/0500~0599/index.html index ff47a76dc..c270defad 100644 --- a/website/public/zh/ChapterFour/0500~0599/index.html +++ b/website/public/zh/ChapterFour/0500~0599/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0605.Can-Place-Flowers/index.html b/website/public/zh/ChapterFour/0600~0699/0605.Can-Place-Flowers/index.html index aa08ad470..c3df89c2d 100644 --- a/website/public/zh/ChapterFour/0600~0699/0605.Can-Place-Flowers/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0605.Can-Place-Flowers/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0609.Find-Duplicate-File-in-System/index.html b/website/public/zh/ChapterFour/0600~0699/0609.Find-Duplicate-File-in-System/index.html index a22a4c375..9a9a4e234 100644 --- a/website/public/zh/ChapterFour/0600~0699/0609.Find-Duplicate-File-in-System/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0609.Find-Duplicate-File-in-System/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0611.Valid-Triangle-Number/index.html b/website/public/zh/ChapterFour/0600~0699/0611.Valid-Triangle-Number/index.html index f99fd5766..28893ab42 100644 --- a/website/public/zh/ChapterFour/0600~0699/0611.Valid-Triangle-Number/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0611.Valid-Triangle-Number/index.html @@ -12340,7 +12340,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0617.Merge-Two-Binary-Trees/index.html b/website/public/zh/ChapterFour/0600~0699/0617.Merge-Two-Binary-Trees/index.html index 1a9e0b163..8b2d83f18 100644 --- a/website/public/zh/ChapterFour/0600~0699/0617.Merge-Two-Binary-Trees/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0617.Merge-Two-Binary-Trees/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0622.Design-Circular-Queue/index.html b/website/public/zh/ChapterFour/0600~0699/0622.Design-Circular-Queue/index.html index 03801dbf8..1f413156e 100644 --- a/website/public/zh/ChapterFour/0600~0699/0622.Design-Circular-Queue/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0622.Design-Circular-Queue/index.html @@ -12439,7 +12439,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0623.Add-One-Row-to-Tree/index.html b/website/public/zh/ChapterFour/0600~0699/0623.Add-One-Row-to-Tree/index.html index 2efbd1c43..905e8be43 100644 --- a/website/public/zh/ChapterFour/0600~0699/0623.Add-One-Row-to-Tree/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0623.Add-One-Row-to-Tree/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0628.Maximum-Product-of-Three-Numbers/index.html b/website/public/zh/ChapterFour/0600~0699/0628.Maximum-Product-of-Three-Numbers/index.html index 24f0ae2ac..3eb9e4e1d 100644 --- a/website/public/zh/ChapterFour/0600~0699/0628.Maximum-Product-of-Three-Numbers/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0628.Maximum-Product-of-Three-Numbers/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0630.Course-Schedule-III/index.html b/website/public/zh/ChapterFour/0600~0699/0630.Course-Schedule-III/index.html index bd9007e92..873dd783f 100644 --- a/website/public/zh/ChapterFour/0600~0699/0630.Course-Schedule-III/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0630.Course-Schedule-III/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0632.Smallest-Range-Covering-Elements-from-K-Lists/index.html b/website/public/zh/ChapterFour/0600~0699/0632.Smallest-Range-Covering-Elements-from-K-Lists/index.html index d5e7eb772..abe910a71 100644 --- a/website/public/zh/ChapterFour/0600~0699/0632.Smallest-Range-Covering-Elements-from-K-Lists/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0632.Smallest-Range-Covering-Elements-from-K-Lists/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0633.Sum-of-Square-Numbers/index.html b/website/public/zh/ChapterFour/0600~0699/0633.Sum-of-Square-Numbers/index.html index 9878e1fa6..1a3ffafc1 100644 --- a/website/public/zh/ChapterFour/0600~0699/0633.Sum-of-Square-Numbers/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0633.Sum-of-Square-Numbers/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0636.Exclusive-Time-of-Functions/index.html b/website/public/zh/ChapterFour/0600~0699/0636.Exclusive-Time-of-Functions/index.html index 04ecc2d73..47c793397 100644 --- a/website/public/zh/ChapterFour/0600~0699/0636.Exclusive-Time-of-Functions/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0636.Exclusive-Time-of-Functions/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0637.Average-of-Levels-in-Binary-Tree/index.html b/website/public/zh/ChapterFour/0600~0699/0637.Average-of-Levels-in-Binary-Tree/index.html index ab053291c..dd31c331c 100644 --- a/website/public/zh/ChapterFour/0600~0699/0637.Average-of-Levels-in-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0637.Average-of-Levels-in-Binary-Tree/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0638.Shopping-Offers/index.html b/website/public/zh/ChapterFour/0600~0699/0638.Shopping-Offers/index.html index c4b064e4b..fc4dc5f7d 100644 --- a/website/public/zh/ChapterFour/0600~0699/0638.Shopping-Offers/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0638.Shopping-Offers/index.html @@ -12408,7 +12408,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0643.Maximum-Average-Subarray-I/index.html b/website/public/zh/ChapterFour/0600~0699/0643.Maximum-Average-Subarray-I/index.html index 86719c0fc..8784ed34a 100644 --- a/website/public/zh/ChapterFour/0600~0699/0643.Maximum-Average-Subarray-I/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0643.Maximum-Average-Subarray-I/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0645.Set-Mismatch/index.html b/website/public/zh/ChapterFour/0600~0699/0645.Set-Mismatch/index.html index aabcc889e..59fc5903e 100644 --- a/website/public/zh/ChapterFour/0600~0699/0645.Set-Mismatch/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0645.Set-Mismatch/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0647.Palindromic-Substrings/index.html b/website/public/zh/ChapterFour/0600~0699/0647.Palindromic-Substrings/index.html index 5fdf67364..b2e4c032e 100644 --- a/website/public/zh/ChapterFour/0600~0699/0647.Palindromic-Substrings/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0647.Palindromic-Substrings/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0648.Replace-Words/index.html b/website/public/zh/ChapterFour/0600~0699/0648.Replace-Words/index.html index bec216286..1af107364 100644 --- a/website/public/zh/ChapterFour/0600~0699/0648.Replace-Words/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0648.Replace-Words/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0653.Two-Sum-IV-Input-is-a-BST/index.html b/website/public/zh/ChapterFour/0600~0699/0653.Two-Sum-IV-Input-is-a-BST/index.html index bc6892ab4..afde5c645 100644 --- a/website/public/zh/ChapterFour/0600~0699/0653.Two-Sum-IV-Input-is-a-BST/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0653.Two-Sum-IV-Input-is-a-BST/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0658.Find-K-Closest-Elements/index.html b/website/public/zh/ChapterFour/0600~0699/0658.Find-K-Closest-Elements/index.html index 12fcfacc1..d3236bd08 100644 --- a/website/public/zh/ChapterFour/0600~0699/0658.Find-K-Closest-Elements/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0658.Find-K-Closest-Elements/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0661.Image-Smoother/index.html b/website/public/zh/ChapterFour/0600~0699/0661.Image-Smoother/index.html index 0e53293ca..7eea0f884 100644 --- a/website/public/zh/ChapterFour/0600~0699/0661.Image-Smoother/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0661.Image-Smoother/index.html @@ -12408,7 +12408,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0662.Maximum-Width-of-Binary-Tree/index.html b/website/public/zh/ChapterFour/0600~0699/0662.Maximum-Width-of-Binary-Tree/index.html index f819393fb..5ffc5f831 100644 --- a/website/public/zh/ChapterFour/0600~0699/0662.Maximum-Width-of-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0662.Maximum-Width-of-Binary-Tree/index.html @@ -12440,7 +12440,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0665.Non-decreasing-Array/index.html b/website/public/zh/ChapterFour/0600~0699/0665.Non-decreasing-Array/index.html index 4dff4f2f8..534f9e6a9 100644 --- a/website/public/zh/ChapterFour/0600~0699/0665.Non-decreasing-Array/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0665.Non-decreasing-Array/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0667.Beautiful-Arrangement-II/index.html b/website/public/zh/ChapterFour/0600~0699/0667.Beautiful-Arrangement-II/index.html index d789c9003..29a21e62a 100644 --- a/website/public/zh/ChapterFour/0600~0699/0667.Beautiful-Arrangement-II/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0667.Beautiful-Arrangement-II/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0668.Kth-Smallest-Number-in-Multiplication-Table/index.html b/website/public/zh/ChapterFour/0600~0699/0668.Kth-Smallest-Number-in-Multiplication-Table/index.html index 6f8beb71b..b1bb0bd69 100644 --- a/website/public/zh/ChapterFour/0600~0699/0668.Kth-Smallest-Number-in-Multiplication-Table/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0668.Kth-Smallest-Number-in-Multiplication-Table/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0669.Trim-a-Binary-Search-Tree/index.html b/website/public/zh/ChapterFour/0600~0699/0669.Trim-a-Binary-Search-Tree/index.html index 47010eff8..fa330f7f5 100644 --- a/website/public/zh/ChapterFour/0600~0699/0669.Trim-a-Binary-Search-Tree/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0669.Trim-a-Binary-Search-Tree/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0674.Longest-Continuous-Increasing-Subsequence/index.html b/website/public/zh/ChapterFour/0600~0699/0674.Longest-Continuous-Increasing-Subsequence/index.html index 188ff805c..ad42d1e29 100644 --- a/website/public/zh/ChapterFour/0600~0699/0674.Longest-Continuous-Increasing-Subsequence/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0674.Longest-Continuous-Increasing-Subsequence/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0676.Implement-Magic-Dictionary/index.html b/website/public/zh/ChapterFour/0600~0699/0676.Implement-Magic-Dictionary/index.html index 535f05316..10564e39a 100644 --- a/website/public/zh/ChapterFour/0600~0699/0676.Implement-Magic-Dictionary/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0676.Implement-Magic-Dictionary/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0677.Map-Sum-Pairs/index.html b/website/public/zh/ChapterFour/0600~0699/0677.Map-Sum-Pairs/index.html index cb1e63999..74642ebad 100644 --- a/website/public/zh/ChapterFour/0600~0699/0677.Map-Sum-Pairs/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0677.Map-Sum-Pairs/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0682.Baseball-Game/index.html b/website/public/zh/ChapterFour/0600~0699/0682.Baseball-Game/index.html index ad87944a0..0efa1af1d 100644 --- a/website/public/zh/ChapterFour/0600~0699/0682.Baseball-Game/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0682.Baseball-Game/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0684.Redundant-Connection/index.html b/website/public/zh/ChapterFour/0600~0699/0684.Redundant-Connection/index.html index 9b870b911..7967942a7 100644 --- a/website/public/zh/ChapterFour/0600~0699/0684.Redundant-Connection/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0684.Redundant-Connection/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0685.Redundant-Connection-II/index.html b/website/public/zh/ChapterFour/0600~0699/0685.Redundant-Connection-II/index.html index ded0477b5..c50b78976 100644 --- a/website/public/zh/ChapterFour/0600~0699/0685.Redundant-Connection-II/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0685.Redundant-Connection-II/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0690.Employee-Importance/index.html b/website/public/zh/ChapterFour/0600~0699/0690.Employee-Importance/index.html index 724c910ff..cac0c53f9 100644 --- a/website/public/zh/ChapterFour/0600~0699/0690.Employee-Importance/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0690.Employee-Importance/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0692.Top-K-Frequent-Words/index.html b/website/public/zh/ChapterFour/0600~0699/0692.Top-K-Frequent-Words/index.html index 2ea1bd1a4..02f70bfa8 100644 --- a/website/public/zh/ChapterFour/0600~0699/0692.Top-K-Frequent-Words/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0692.Top-K-Frequent-Words/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0693.Binary-Number-with-Alternating-Bits/index.html b/website/public/zh/ChapterFour/0600~0699/0693.Binary-Number-with-Alternating-Bits/index.html index 251f6afe2..b762c1a63 100644 --- a/website/public/zh/ChapterFour/0600~0699/0693.Binary-Number-with-Alternating-Bits/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0693.Binary-Number-with-Alternating-Bits/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0695.Max-Area-of-Island/index.html b/website/public/zh/ChapterFour/0600~0699/0695.Max-Area-of-Island/index.html index dcb754c0d..ea173a574 100644 --- a/website/public/zh/ChapterFour/0600~0699/0695.Max-Area-of-Island/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0695.Max-Area-of-Island/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0696.Count-Binary-Substrings/index.html b/website/public/zh/ChapterFour/0600~0699/0696.Count-Binary-Substrings/index.html index c474cc21b..c547a0951 100644 --- a/website/public/zh/ChapterFour/0600~0699/0696.Count-Binary-Substrings/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0696.Count-Binary-Substrings/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0697.Degree-of-an-Array/index.html b/website/public/zh/ChapterFour/0600~0699/0697.Degree-of-an-Array/index.html index bfb076572..784abef64 100644 --- a/website/public/zh/ChapterFour/0600~0699/0697.Degree-of-an-Array/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0697.Degree-of-an-Array/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/0699.Falling-Squares/index.html b/website/public/zh/ChapterFour/0600~0699/0699.Falling-Squares/index.html index 89bfc18aa..d9ac098f6 100644 --- a/website/public/zh/ChapterFour/0600~0699/0699.Falling-Squares/index.html +++ b/website/public/zh/ChapterFour/0600~0699/0699.Falling-Squares/index.html @@ -12430,7 +12430,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0600~0699/index.html b/website/public/zh/ChapterFour/0600~0699/index.html index 9704c782b..0673cfa34 100644 --- a/website/public/zh/ChapterFour/0600~0699/index.html +++ b/website/public/zh/ChapterFour/0600~0699/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0700.Search-in-a-Binary-Search-Tree/index.html b/website/public/zh/ChapterFour/0700~0799/0700.Search-in-a-Binary-Search-Tree/index.html index 6d111dc7b..5fa309c6e 100644 --- a/website/public/zh/ChapterFour/0700~0799/0700.Search-in-a-Binary-Search-Tree/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0700.Search-in-a-Binary-Search-Tree/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0701.Insert-into-a-Binary-Search-Tree/index.html b/website/public/zh/ChapterFour/0700~0799/0701.Insert-into-a-Binary-Search-Tree/index.html index d0948f9a2..54fca8e30 100644 --- a/website/public/zh/ChapterFour/0700~0799/0701.Insert-into-a-Binary-Search-Tree/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0701.Insert-into-a-Binary-Search-Tree/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0703.Kth-Largest-Element-in-a-Stream/index.html b/website/public/zh/ChapterFour/0700~0799/0703.Kth-Largest-Element-in-a-Stream/index.html index 964d9125a..1643fa54c 100644 --- a/website/public/zh/ChapterFour/0700~0799/0703.Kth-Largest-Element-in-a-Stream/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0703.Kth-Largest-Element-in-a-Stream/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0704.Binary-Search/index.html b/website/public/zh/ChapterFour/0700~0799/0704.Binary-Search/index.html index 0ae8d9af6..5f4306575 100644 --- a/website/public/zh/ChapterFour/0700~0799/0704.Binary-Search/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0704.Binary-Search/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0705.Design-HashSet/index.html b/website/public/zh/ChapterFour/0700~0799/0705.Design-HashSet/index.html index 780c5c3a0..a33740cc3 100644 --- a/website/public/zh/ChapterFour/0700~0799/0705.Design-HashSet/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0705.Design-HashSet/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0706.Design-HashMap/index.html b/website/public/zh/ChapterFour/0700~0799/0706.Design-HashMap/index.html index 18d8ca136..142f88799 100644 --- a/website/public/zh/ChapterFour/0700~0799/0706.Design-HashMap/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0706.Design-HashMap/index.html @@ -12449,7 +12449,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0707.Design-Linked-List/index.html b/website/public/zh/ChapterFour/0700~0799/0707.Design-Linked-List/index.html index 76ef11fa3..6772afe2e 100644 --- a/website/public/zh/ChapterFour/0700~0799/0707.Design-Linked-List/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0707.Design-Linked-List/index.html @@ -12448,7 +12448,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0709.To-Lower-Case/index.html b/website/public/zh/ChapterFour/0700~0799/0709.To-Lower-Case/index.html index 08bc78cfb..d7df8a283 100644 --- a/website/public/zh/ChapterFour/0700~0799/0709.To-Lower-Case/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0709.To-Lower-Case/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0710.Random-Pick-with-Blacklist/index.html b/website/public/zh/ChapterFour/0700~0799/0710.Random-Pick-with-Blacklist/index.html index c3c85df8a..07905a732 100644 --- a/website/public/zh/ChapterFour/0700~0799/0710.Random-Pick-with-Blacklist/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0710.Random-Pick-with-Blacklist/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0713.Subarray-Product-Less-Than-K/index.html b/website/public/zh/ChapterFour/0700~0799/0713.Subarray-Product-Less-Than-K/index.html index a4a6b1439..ffcdcad62 100644 --- a/website/public/zh/ChapterFour/0700~0799/0713.Subarray-Product-Less-Than-K/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0713.Subarray-Product-Less-Than-K/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0714.Best-Time-to-Buy-and-Sell-Stock-with-Transaction-Fee/index.html b/website/public/zh/ChapterFour/0700~0799/0714.Best-Time-to-Buy-and-Sell-Stock-with-Transaction-Fee/index.html index 276109cf1..968d8cb82 100644 --- a/website/public/zh/ChapterFour/0700~0799/0714.Best-Time-to-Buy-and-Sell-Stock-with-Transaction-Fee/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0714.Best-Time-to-Buy-and-Sell-Stock-with-Transaction-Fee/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0715.Range-Module/index.html b/website/public/zh/ChapterFour/0700~0799/0715.Range-Module/index.html index 6f4586c55..035ed1188 100644 --- a/website/public/zh/ChapterFour/0700~0799/0715.Range-Module/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0715.Range-Module/index.html @@ -12566,7 +12566,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0717.1-bit-and-2-bit-Characters/index.html b/website/public/zh/ChapterFour/0700~0799/0717.1-bit-and-2-bit-Characters/index.html index 3d7adbcdb..3fc2285e4 100644 --- a/website/public/zh/ChapterFour/0700~0799/0717.1-bit-and-2-bit-Characters/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0717.1-bit-and-2-bit-Characters/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0718.Maximum-Length-of-Repeated-Subarray/index.html b/website/public/zh/ChapterFour/0700~0799/0718.Maximum-Length-of-Repeated-Subarray/index.html index aeb66b810..c6b57c40d 100644 --- a/website/public/zh/ChapterFour/0700~0799/0718.Maximum-Length-of-Repeated-Subarray/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0718.Maximum-Length-of-Repeated-Subarray/index.html @@ -12428,7 +12428,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0719.Find-K-th-Smallest-Pair-Distance/index.html b/website/public/zh/ChapterFour/0700~0799/0719.Find-K-th-Smallest-Pair-Distance/index.html index cf77873c5..f82fd6ea3 100644 --- a/website/public/zh/ChapterFour/0700~0799/0719.Find-K-th-Smallest-Pair-Distance/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0719.Find-K-th-Smallest-Pair-Distance/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0720.Longest-Word-in-Dictionary/index.html b/website/public/zh/ChapterFour/0700~0799/0720.Longest-Word-in-Dictionary/index.html index 59e168e0f..317e89178 100644 --- a/website/public/zh/ChapterFour/0700~0799/0720.Longest-Word-in-Dictionary/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0720.Longest-Word-in-Dictionary/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0721.Accounts-Merge/index.html b/website/public/zh/ChapterFour/0700~0799/0721.Accounts-Merge/index.html index 5c3704069..1ba9e21bf 100644 --- a/website/public/zh/ChapterFour/0700~0799/0721.Accounts-Merge/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0721.Accounts-Merge/index.html @@ -12439,7 +12439,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0724.Find-Pivot-Index/index.html b/website/public/zh/ChapterFour/0700~0799/0724.Find-Pivot-Index/index.html index d25f9f584..46e5426a8 100644 --- a/website/public/zh/ChapterFour/0700~0799/0724.Find-Pivot-Index/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0724.Find-Pivot-Index/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0725.Split-Linked-List-in-Parts/index.html b/website/public/zh/ChapterFour/0700~0799/0725.Split-Linked-List-in-Parts/index.html index 069337cd1..3020c89dd 100644 --- a/website/public/zh/ChapterFour/0700~0799/0725.Split-Linked-List-in-Parts/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0725.Split-Linked-List-in-Parts/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0726.Number-of-Atoms/index.html b/website/public/zh/ChapterFour/0700~0799/0726.Number-of-Atoms/index.html index 1253b4b5d..9d4a33c3b 100644 --- a/website/public/zh/ChapterFour/0700~0799/0726.Number-of-Atoms/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0726.Number-of-Atoms/index.html @@ -12474,7 +12474,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0728.Self-Dividing-Numbers/index.html b/website/public/zh/ChapterFour/0700~0799/0728.Self-Dividing-Numbers/index.html index 463e552c6..7506af563 100644 --- a/website/public/zh/ChapterFour/0700~0799/0728.Self-Dividing-Numbers/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0728.Self-Dividing-Numbers/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0729.My-Calendar-I/index.html b/website/public/zh/ChapterFour/0700~0799/0729.My-Calendar-I/index.html index d17b89c42..3722064ca 100644 --- a/website/public/zh/ChapterFour/0700~0799/0729.My-Calendar-I/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0729.My-Calendar-I/index.html @@ -12467,7 +12467,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0732.My-Calendar-III/index.html b/website/public/zh/ChapterFour/0700~0799/0732.My-Calendar-III/index.html index fd774c6a9..9d2ef3612 100644 --- a/website/public/zh/ChapterFour/0700~0799/0732.My-Calendar-III/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0732.My-Calendar-III/index.html @@ -12430,7 +12430,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0733.Flood-Fill/index.html b/website/public/zh/ChapterFour/0700~0799/0733.Flood-Fill/index.html index b90b19e4d..c45aea9f0 100644 --- a/website/public/zh/ChapterFour/0700~0799/0733.Flood-Fill/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0733.Flood-Fill/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0735.Asteroid-Collision/index.html b/website/public/zh/ChapterFour/0700~0799/0735.Asteroid-Collision/index.html index 532420819..3b3a5124a 100644 --- a/website/public/zh/ChapterFour/0700~0799/0735.Asteroid-Collision/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0735.Asteroid-Collision/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0739.Daily-Temperatures/index.html b/website/public/zh/ChapterFour/0700~0799/0739.Daily-Temperatures/index.html index 887d3e688..62789c7b0 100644 --- a/website/public/zh/ChapterFour/0700~0799/0739.Daily-Temperatures/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0739.Daily-Temperatures/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0744.Find-Smallest-Letter-Greater-Than-Target/index.html b/website/public/zh/ChapterFour/0700~0799/0744.Find-Smallest-Letter-Greater-Than-Target/index.html index 9e38b2a6b..9bde741d5 100644 --- a/website/public/zh/ChapterFour/0700~0799/0744.Find-Smallest-Letter-Greater-Than-Target/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0744.Find-Smallest-Letter-Greater-Than-Target/index.html @@ -12389,7 +12389,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0745.Prefix-and-Suffix-Search/index.html b/website/public/zh/ChapterFour/0700~0799/0745.Prefix-and-Suffix-Search/index.html index bdb9f7af3..70d06496a 100644 --- a/website/public/zh/ChapterFour/0700~0799/0745.Prefix-and-Suffix-Search/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0745.Prefix-and-Suffix-Search/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0746.Min-Cost-Climbing-Stairs/index.html b/website/public/zh/ChapterFour/0700~0799/0746.Min-Cost-Climbing-Stairs/index.html index 319ccd999..3abd8ee2d 100644 --- a/website/public/zh/ChapterFour/0700~0799/0746.Min-Cost-Climbing-Stairs/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0746.Min-Cost-Climbing-Stairs/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0747.Largest-Number-At-Least-Twice-of-Others/index.html b/website/public/zh/ChapterFour/0700~0799/0747.Largest-Number-At-Least-Twice-of-Others/index.html index 751d27848..f6c5db243 100644 --- a/website/public/zh/ChapterFour/0700~0799/0747.Largest-Number-At-Least-Twice-of-Others/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0747.Largest-Number-At-Least-Twice-of-Others/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0748.Shortest-Completing-Word/index.html b/website/public/zh/ChapterFour/0700~0799/0748.Shortest-Completing-Word/index.html index 8043423a0..2a36a28a7 100644 --- a/website/public/zh/ChapterFour/0700~0799/0748.Shortest-Completing-Word/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0748.Shortest-Completing-Word/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0752.Open-the-Lock/index.html b/website/public/zh/ChapterFour/0700~0799/0752.Open-the-Lock/index.html index e92049f75..34bfa2667 100644 --- a/website/public/zh/ChapterFour/0700~0799/0752.Open-the-Lock/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0752.Open-the-Lock/index.html @@ -12412,7 +12412,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0753.Cracking-the-Safe/index.html b/website/public/zh/ChapterFour/0700~0799/0753.Cracking-the-Safe/index.html index 3662e6cc5..8d54106f5 100644 --- a/website/public/zh/ChapterFour/0700~0799/0753.Cracking-the-Safe/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0753.Cracking-the-Safe/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0756.Pyramid-Transition-Matrix/index.html b/website/public/zh/ChapterFour/0700~0799/0756.Pyramid-Transition-Matrix/index.html index 20b732414..ca02f7b8b 100644 --- a/website/public/zh/ChapterFour/0700~0799/0756.Pyramid-Transition-Matrix/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0756.Pyramid-Transition-Matrix/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0762.Prime-Number-of-Set-Bits-in-Binary-Representation/index.html b/website/public/zh/ChapterFour/0700~0799/0762.Prime-Number-of-Set-Bits-in-Binary-Representation/index.html index cf39c9e35..5f1d6bd58 100644 --- a/website/public/zh/ChapterFour/0700~0799/0762.Prime-Number-of-Set-Bits-in-Binary-Representation/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0762.Prime-Number-of-Set-Bits-in-Binary-Representation/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0763.Partition-Labels/index.html b/website/public/zh/ChapterFour/0700~0799/0763.Partition-Labels/index.html index 586076869..b16711435 100644 --- a/website/public/zh/ChapterFour/0700~0799/0763.Partition-Labels/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0763.Partition-Labels/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0765.Couples-Holding-Hands/index.html b/website/public/zh/ChapterFour/0700~0799/0765.Couples-Holding-Hands/index.html index e8db8abcd..1bf46ceae 100644 --- a/website/public/zh/ChapterFour/0700~0799/0765.Couples-Holding-Hands/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0765.Couples-Holding-Hands/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0766.Toeplitz-Matrix/index.html b/website/public/zh/ChapterFour/0700~0799/0766.Toeplitz-Matrix/index.html index bb11782cd..13c1cd35e 100644 --- a/website/public/zh/ChapterFour/0700~0799/0766.Toeplitz-Matrix/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0766.Toeplitz-Matrix/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0767.Reorganize-String/index.html b/website/public/zh/ChapterFour/0700~0799/0767.Reorganize-String/index.html index 87b33b63f..b20d6add1 100644 --- a/website/public/zh/ChapterFour/0700~0799/0767.Reorganize-String/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0767.Reorganize-String/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0771.Jewels-and-Stones/index.html b/website/public/zh/ChapterFour/0700~0799/0771.Jewels-and-Stones/index.html index 5ec698b98..7a69194fe 100644 --- a/website/public/zh/ChapterFour/0700~0799/0771.Jewels-and-Stones/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0771.Jewels-and-Stones/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0775.Global-and-Local-Inversions/index.html b/website/public/zh/ChapterFour/0700~0799/0775.Global-and-Local-Inversions/index.html index e13723ef2..7843e8399 100644 --- a/website/public/zh/ChapterFour/0700~0799/0775.Global-and-Local-Inversions/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0775.Global-and-Local-Inversions/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0778.Swim-in-Rising-Water/index.html b/website/public/zh/ChapterFour/0700~0799/0778.Swim-in-Rising-Water/index.html index ad5b65b4c..d91498a9d 100644 --- a/website/public/zh/ChapterFour/0700~0799/0778.Swim-in-Rising-Water/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0778.Swim-in-Rising-Water/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0781.Rabbits-in-Forest/index.html b/website/public/zh/ChapterFour/0700~0799/0781.Rabbits-in-Forest/index.html index 84f0454a0..6a6bedaf3 100644 --- a/website/public/zh/ChapterFour/0700~0799/0781.Rabbits-in-Forest/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0781.Rabbits-in-Forest/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0783.Minimum-Distance-Between-BST-Nodes/index.html b/website/public/zh/ChapterFour/0700~0799/0783.Minimum-Distance-Between-BST-Nodes/index.html index 2c465e671..c796efdb5 100644 --- a/website/public/zh/ChapterFour/0700~0799/0783.Minimum-Distance-Between-BST-Nodes/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0783.Minimum-Distance-Between-BST-Nodes/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0784.Letter-Case-Permutation/index.html b/website/public/zh/ChapterFour/0700~0799/0784.Letter-Case-Permutation/index.html index f7cdf5e8b..82f7e39f6 100644 --- a/website/public/zh/ChapterFour/0700~0799/0784.Letter-Case-Permutation/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0784.Letter-Case-Permutation/index.html @@ -12419,7 +12419,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0785.Is-Graph-Bipartite/index.html b/website/public/zh/ChapterFour/0700~0799/0785.Is-Graph-Bipartite/index.html index 7382b6a8d..5a201f3e4 100644 --- a/website/public/zh/ChapterFour/0700~0799/0785.Is-Graph-Bipartite/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0785.Is-Graph-Bipartite/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0786.K-th-Smallest-Prime-Fraction/index.html b/website/public/zh/ChapterFour/0700~0799/0786.K-th-Smallest-Prime-Fraction/index.html index 0cce5f375..2342ff9a1 100644 --- a/website/public/zh/ChapterFour/0700~0799/0786.K-th-Smallest-Prime-Fraction/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0786.K-th-Smallest-Prime-Fraction/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0791.Custom-Sort-String/index.html b/website/public/zh/ChapterFour/0700~0799/0791.Custom-Sort-String/index.html index 833f9ad9b..40e7ea4ec 100644 --- a/website/public/zh/ChapterFour/0700~0799/0791.Custom-Sort-String/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0791.Custom-Sort-String/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0792.Number-of-Matching-Subsequences/index.html b/website/public/zh/ChapterFour/0700~0799/0792.Number-of-Matching-Subsequences/index.html index f1c68a7da..b7c6a4e52 100644 --- a/website/public/zh/ChapterFour/0700~0799/0792.Number-of-Matching-Subsequences/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0792.Number-of-Matching-Subsequences/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0793.Preimage-Size-of-Factorial-Zeroes-Function/index.html b/website/public/zh/ChapterFour/0700~0799/0793.Preimage-Size-of-Factorial-Zeroes-Function/index.html index 8f8197660..4cb06ec13 100644 --- a/website/public/zh/ChapterFour/0700~0799/0793.Preimage-Size-of-Factorial-Zeroes-Function/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0793.Preimage-Size-of-Factorial-Zeroes-Function/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0794.Valid-Tic-Tac-Toe-State/index.html b/website/public/zh/ChapterFour/0700~0799/0794.Valid-Tic-Tac-Toe-State/index.html index 3762e51bb..7ce5a1a57 100644 --- a/website/public/zh/ChapterFour/0700~0799/0794.Valid-Tic-Tac-Toe-State/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0794.Valid-Tic-Tac-Toe-State/index.html @@ -12416,7 +12416,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/0795.Number-of-Subarrays-with-Bounded-Maximum/index.html b/website/public/zh/ChapterFour/0700~0799/0795.Number-of-Subarrays-with-Bounded-Maximum/index.html index c3522e1a7..d3ec2f3a8 100644 --- a/website/public/zh/ChapterFour/0700~0799/0795.Number-of-Subarrays-with-Bounded-Maximum/index.html +++ b/website/public/zh/ChapterFour/0700~0799/0795.Number-of-Subarrays-with-Bounded-Maximum/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0700~0799/index.html b/website/public/zh/ChapterFour/0700~0799/index.html index ca0328014..8fbfa0e69 100644 --- a/website/public/zh/ChapterFour/0700~0799/index.html +++ b/website/public/zh/ChapterFour/0700~0799/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0802.Find-Eventual-Safe-States/index.html b/website/public/zh/ChapterFour/0800~0899/0802.Find-Eventual-Safe-States/index.html index 4921e15ca..3faa6c6fc 100644 --- a/website/public/zh/ChapterFour/0800~0899/0802.Find-Eventual-Safe-States/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0802.Find-Eventual-Safe-States/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0803.Bricks-Falling-When-Hit/index.html b/website/public/zh/ChapterFour/0800~0899/0803.Bricks-Falling-When-Hit/index.html index a9c0ee99f..ce85c65c8 100644 --- a/website/public/zh/ChapterFour/0800~0899/0803.Bricks-Falling-When-Hit/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0803.Bricks-Falling-When-Hit/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0807.Max-Increase-to-Keep-City-Skyline/index.html b/website/public/zh/ChapterFour/0800~0899/0807.Max-Increase-to-Keep-City-Skyline/index.html index 0f8ea767d..cf8a438fd 100644 --- a/website/public/zh/ChapterFour/0800~0899/0807.Max-Increase-to-Keep-City-Skyline/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0807.Max-Increase-to-Keep-City-Skyline/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0810.Chalkboard-XOR-Game/index.html b/website/public/zh/ChapterFour/0800~0899/0810.Chalkboard-XOR-Game/index.html index 5bf4f9e03..539808d28 100644 --- a/website/public/zh/ChapterFour/0800~0899/0810.Chalkboard-XOR-Game/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0810.Chalkboard-XOR-Game/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0811.Subdomain-Visit-Count/index.html b/website/public/zh/ChapterFour/0800~0899/0811.Subdomain-Visit-Count/index.html index 239b374a9..498a628d1 100644 --- a/website/public/zh/ChapterFour/0800~0899/0811.Subdomain-Visit-Count/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0811.Subdomain-Visit-Count/index.html @@ -12432,7 +12432,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0812.Largest-Triangle-Area/index.html b/website/public/zh/ChapterFour/0800~0899/0812.Largest-Triangle-Area/index.html index c553521db..827af886f 100644 --- a/website/public/zh/ChapterFour/0800~0899/0812.Largest-Triangle-Area/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0812.Largest-Triangle-Area/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0815.Bus-Routes/index.html b/website/public/zh/ChapterFour/0800~0899/0815.Bus-Routes/index.html index 69173e3fa..be31376a3 100644 --- a/website/public/zh/ChapterFour/0800~0899/0815.Bus-Routes/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0815.Bus-Routes/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0816.Ambiguous-Coordinates/index.html b/website/public/zh/ChapterFour/0800~0899/0816.Ambiguous-Coordinates/index.html index 1726999d7..e17b576a8 100644 --- a/website/public/zh/ChapterFour/0800~0899/0816.Ambiguous-Coordinates/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0816.Ambiguous-Coordinates/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0817.Linked-List-Components/index.html b/website/public/zh/ChapterFour/0800~0899/0817.Linked-List-Components/index.html index 6bee68041..0b632b9ed 100644 --- a/website/public/zh/ChapterFour/0800~0899/0817.Linked-List-Components/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0817.Linked-List-Components/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0819.Most-Common-Word/index.html b/website/public/zh/ChapterFour/0800~0899/0819.Most-Common-Word/index.html index e3e3c6ea2..79b41184c 100644 --- a/website/public/zh/ChapterFour/0800~0899/0819.Most-Common-Word/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0819.Most-Common-Word/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0820.Short-Encoding-of-Words/index.html b/website/public/zh/ChapterFour/0800~0899/0820.Short-Encoding-of-Words/index.html index 1c2dbb0cb..9571e97e8 100644 --- a/website/public/zh/ChapterFour/0800~0899/0820.Short-Encoding-of-Words/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0820.Short-Encoding-of-Words/index.html @@ -12435,7 +12435,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0821.Shortest-Distance-to-a-Character/index.html b/website/public/zh/ChapterFour/0800~0899/0821.Shortest-Distance-to-a-Character/index.html index 18370bf6e..2fab8cf3d 100644 --- a/website/public/zh/ChapterFour/0800~0899/0821.Shortest-Distance-to-a-Character/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0821.Shortest-Distance-to-a-Character/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0823.Binary-Trees-With-Factors/index.html b/website/public/zh/ChapterFour/0800~0899/0823.Binary-Trees-With-Factors/index.html index abc013f3d..574daad4a 100644 --- a/website/public/zh/ChapterFour/0800~0899/0823.Binary-Trees-With-Factors/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0823.Binary-Trees-With-Factors/index.html @@ -12420,7 +12420,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0825.Friends-Of-Appropriate-Ages/index.html b/website/public/zh/ChapterFour/0800~0899/0825.Friends-Of-Appropriate-Ages/index.html index 732879c1b..47b019de7 100644 --- a/website/public/zh/ChapterFour/0800~0899/0825.Friends-Of-Appropriate-Ages/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0825.Friends-Of-Appropriate-Ages/index.html @@ -12427,7 +12427,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0826.Most-Profit-Assigning-Work/index.html b/website/public/zh/ChapterFour/0800~0899/0826.Most-Profit-Assigning-Work/index.html index 55f9a47af..4aa762cc7 100644 --- a/website/public/zh/ChapterFour/0800~0899/0826.Most-Profit-Assigning-Work/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0826.Most-Profit-Assigning-Work/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0828.Count-Unique-Characters-of-All-Substrings-of-a-Given-String/index.html b/website/public/zh/ChapterFour/0800~0899/0828.Count-Unique-Characters-of-All-Substrings-of-a-Given-String/index.html index a24fd7cd9..2ce389b87 100644 --- a/website/public/zh/ChapterFour/0800~0899/0828.Count-Unique-Characters-of-All-Substrings-of-a-Given-String/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0828.Count-Unique-Characters-of-All-Substrings-of-a-Given-String/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0830.Positions-of-Large-Groups/index.html b/website/public/zh/ChapterFour/0800~0899/0830.Positions-of-Large-Groups/index.html index 05464db85..0e280319c 100644 --- a/website/public/zh/ChapterFour/0800~0899/0830.Positions-of-Large-Groups/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0830.Positions-of-Large-Groups/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0832.Flipping-an-Image/index.html b/website/public/zh/ChapterFour/0800~0899/0832.Flipping-an-Image/index.html index 7e75ec575..463188508 100644 --- a/website/public/zh/ChapterFour/0800~0899/0832.Flipping-an-Image/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0832.Flipping-an-Image/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0834.Sum-of-Distances-in-Tree/index.html b/website/public/zh/ChapterFour/0800~0899/0834.Sum-of-Distances-in-Tree/index.html index be03311e5..9454ac65f 100644 --- a/website/public/zh/ChapterFour/0800~0899/0834.Sum-of-Distances-in-Tree/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0834.Sum-of-Distances-in-Tree/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0836.Rectangle-Overlap/index.html b/website/public/zh/ChapterFour/0800~0899/0836.Rectangle-Overlap/index.html index 1f036b828..df2dc771f 100644 --- a/website/public/zh/ChapterFour/0800~0899/0836.Rectangle-Overlap/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0836.Rectangle-Overlap/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0838.Push-Dominoes/index.html b/website/public/zh/ChapterFour/0800~0899/0838.Push-Dominoes/index.html index 05f6eccd9..048a8f3f8 100644 --- a/website/public/zh/ChapterFour/0800~0899/0838.Push-Dominoes/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0838.Push-Dominoes/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0839.Similar-String-Groups/index.html b/website/public/zh/ChapterFour/0800~0899/0839.Similar-String-Groups/index.html index ca1a54a9f..d2366192f 100644 --- a/website/public/zh/ChapterFour/0800~0899/0839.Similar-String-Groups/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0839.Similar-String-Groups/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0841.Keys-and-Rooms/index.html b/website/public/zh/ChapterFour/0800~0899/0841.Keys-and-Rooms/index.html index 746fced25..d42ffd499 100644 --- a/website/public/zh/ChapterFour/0800~0899/0841.Keys-and-Rooms/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0841.Keys-and-Rooms/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0842.Split-Array-into-Fibonacci-Sequence/index.html b/website/public/zh/ChapterFour/0800~0899/0842.Split-Array-into-Fibonacci-Sequence/index.html index 78defbf7c..712011d27 100644 --- a/website/public/zh/ChapterFour/0800~0899/0842.Split-Array-into-Fibonacci-Sequence/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0842.Split-Array-into-Fibonacci-Sequence/index.html @@ -12424,7 +12424,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0844.Backspace-String-Compare/index.html b/website/public/zh/ChapterFour/0800~0899/0844.Backspace-String-Compare/index.html index a1a257531..d3f50bd62 100644 --- a/website/public/zh/ChapterFour/0800~0899/0844.Backspace-String-Compare/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0844.Backspace-String-Compare/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0845.Longest-Mountain-in-Array/index.html b/website/public/zh/ChapterFour/0800~0899/0845.Longest-Mountain-in-Array/index.html index 24bf29a1d..cad132cd4 100644 --- a/website/public/zh/ChapterFour/0800~0899/0845.Longest-Mountain-in-Array/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0845.Longest-Mountain-in-Array/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0846.Hand-of-Straights/index.html b/website/public/zh/ChapterFour/0800~0899/0846.Hand-of-Straights/index.html index 0c2c5afed..48c4fc161 100644 --- a/website/public/zh/ChapterFour/0800~0899/0846.Hand-of-Straights/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0846.Hand-of-Straights/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0850.Rectangle-Area-II/index.html b/website/public/zh/ChapterFour/0800~0899/0850.Rectangle-Area-II/index.html index afe2f208a..6b298ae0f 100644 --- a/website/public/zh/ChapterFour/0800~0899/0850.Rectangle-Area-II/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0850.Rectangle-Area-II/index.html @@ -12597,7 +12597,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0851.Loud-and-Rich/index.html b/website/public/zh/ChapterFour/0800~0899/0851.Loud-and-Rich/index.html index 89114d14b..d0f14a070 100644 --- a/website/public/zh/ChapterFour/0800~0899/0851.Loud-and-Rich/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0851.Loud-and-Rich/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0852.Peak-Index-in-a-Mountain-Array/index.html b/website/public/zh/ChapterFour/0800~0899/0852.Peak-Index-in-a-Mountain-Array/index.html index ac8e907d2..583212692 100644 --- a/website/public/zh/ChapterFour/0800~0899/0852.Peak-Index-in-a-Mountain-Array/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0852.Peak-Index-in-a-Mountain-Array/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0853.Car-Fleet/index.html b/website/public/zh/ChapterFour/0800~0899/0853.Car-Fleet/index.html index d4e5227c8..e3fc2b574 100644 --- a/website/public/zh/ChapterFour/0800~0899/0853.Car-Fleet/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0853.Car-Fleet/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0856.Score-of-Parentheses/index.html b/website/public/zh/ChapterFour/0800~0899/0856.Score-of-Parentheses/index.html index 4c0aaa5ee..b808e07a8 100644 --- a/website/public/zh/ChapterFour/0800~0899/0856.Score-of-Parentheses/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0856.Score-of-Parentheses/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0859.Buddy-Strings/index.html b/website/public/zh/ChapterFour/0800~0899/0859.Buddy-Strings/index.html index b706dbce2..a21ab8ac2 100644 --- a/website/public/zh/ChapterFour/0800~0899/0859.Buddy-Strings/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0859.Buddy-Strings/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0862.Shortest-Subarray-with-Sum-at-Least-K/index.html b/website/public/zh/ChapterFour/0800~0899/0862.Shortest-Subarray-with-Sum-at-Least-K/index.html index 8b1c934e8..e006fee2d 100644 --- a/website/public/zh/ChapterFour/0800~0899/0862.Shortest-Subarray-with-Sum-at-Least-K/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0862.Shortest-Subarray-with-Sum-at-Least-K/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0863.All-Nodes-Distance-K-in-Binary-Tree/index.html b/website/public/zh/ChapterFour/0800~0899/0863.All-Nodes-Distance-K-in-Binary-Tree/index.html index b27e2343a..80cf95100 100644 --- a/website/public/zh/ChapterFour/0800~0899/0863.All-Nodes-Distance-K-in-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0863.All-Nodes-Distance-K-in-Binary-Tree/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0864.Shortest-Path-to-Get-All-Keys/index.html b/website/public/zh/ChapterFour/0800~0899/0864.Shortest-Path-to-Get-All-Keys/index.html index f64223b4e..f9eca7eca 100644 --- a/website/public/zh/ChapterFour/0800~0899/0864.Shortest-Path-to-Get-All-Keys/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0864.Shortest-Path-to-Get-All-Keys/index.html @@ -12519,7 +12519,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0867.Transpose-Matrix/index.html b/website/public/zh/ChapterFour/0800~0899/0867.Transpose-Matrix/index.html index 98ecf2e92..810262555 100644 --- a/website/public/zh/ChapterFour/0800~0899/0867.Transpose-Matrix/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0867.Transpose-Matrix/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0869.Reordered-Power-of-2/index.html b/website/public/zh/ChapterFour/0800~0899/0869.Reordered-Power-of-2/index.html index b6920650a..b83c0ed9f 100644 --- a/website/public/zh/ChapterFour/0800~0899/0869.Reordered-Power-of-2/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0869.Reordered-Power-of-2/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0870.Advantage-Shuffle/index.html b/website/public/zh/ChapterFour/0800~0899/0870.Advantage-Shuffle/index.html index e5ac540e5..91976ec9d 100644 --- a/website/public/zh/ChapterFour/0800~0899/0870.Advantage-Shuffle/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0870.Advantage-Shuffle/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0872.Leaf-Similar-Trees/index.html b/website/public/zh/ChapterFour/0800~0899/0872.Leaf-Similar-Trees/index.html index cd50d5d20..c80131539 100644 --- a/website/public/zh/ChapterFour/0800~0899/0872.Leaf-Similar-Trees/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0872.Leaf-Similar-Trees/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0874.Walking-Robot-Simulation/index.html b/website/public/zh/ChapterFour/0800~0899/0874.Walking-Robot-Simulation/index.html index 9916485d9..3aaaa459f 100644 --- a/website/public/zh/ChapterFour/0800~0899/0874.Walking-Robot-Simulation/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0874.Walking-Robot-Simulation/index.html @@ -12423,7 +12423,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0875.Koko-Eating-Bananas/index.html b/website/public/zh/ChapterFour/0800~0899/0875.Koko-Eating-Bananas/index.html index 599c70566..6b4154a2a 100644 --- a/website/public/zh/ChapterFour/0800~0899/0875.Koko-Eating-Bananas/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0875.Koko-Eating-Bananas/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0876.Middle-of-the-Linked-List/index.html b/website/public/zh/ChapterFour/0800~0899/0876.Middle-of-the-Linked-List/index.html index 0241167b5..9905ca483 100644 --- a/website/public/zh/ChapterFour/0800~0899/0876.Middle-of-the-Linked-List/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0876.Middle-of-the-Linked-List/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0877.Stone-Game/index.html b/website/public/zh/ChapterFour/0800~0899/0877.Stone-Game/index.html index ae7d830ba..81aa7eafd 100644 --- a/website/public/zh/ChapterFour/0800~0899/0877.Stone-Game/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0877.Stone-Game/index.html @@ -12346,7 +12346,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0878.Nth-Magical-Number/index.html b/website/public/zh/ChapterFour/0800~0899/0878.Nth-Magical-Number/index.html index df0ed0466..e4d319ae5 100644 --- a/website/public/zh/ChapterFour/0800~0899/0878.Nth-Magical-Number/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0878.Nth-Magical-Number/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0880.Decoded-String-at-Index/index.html b/website/public/zh/ChapterFour/0800~0899/0880.Decoded-String-at-Index/index.html index d8ca762bf..230caf0d6 100644 --- a/website/public/zh/ChapterFour/0800~0899/0880.Decoded-String-at-Index/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0880.Decoded-String-at-Index/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0881.Boats-to-Save-People/index.html b/website/public/zh/ChapterFour/0800~0899/0881.Boats-to-Save-People/index.html index 90a49ac1a..0eb62df16 100644 --- a/website/public/zh/ChapterFour/0800~0899/0881.Boats-to-Save-People/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0881.Boats-to-Save-People/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0884.Uncommon-Words-from-Two-Sentences/index.html b/website/public/zh/ChapterFour/0800~0899/0884.Uncommon-Words-from-Two-Sentences/index.html index 77841bbe9..3430d5eff 100644 --- a/website/public/zh/ChapterFour/0800~0899/0884.Uncommon-Words-from-Two-Sentences/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0884.Uncommon-Words-from-Two-Sentences/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0885.Spiral-Matrix-III/index.html b/website/public/zh/ChapterFour/0800~0899/0885.Spiral-Matrix-III/index.html index 0b0599f36..58f5323eb 100644 --- a/website/public/zh/ChapterFour/0800~0899/0885.Spiral-Matrix-III/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0885.Spiral-Matrix-III/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0887.Super-Egg-Drop/index.html b/website/public/zh/ChapterFour/0800~0899/0887.Super-Egg-Drop/index.html index 113212cef..428270396 100644 --- a/website/public/zh/ChapterFour/0800~0899/0887.Super-Egg-Drop/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0887.Super-Egg-Drop/index.html @@ -12459,7 +12459,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0888.Fair-Candy-Swap/index.html b/website/public/zh/ChapterFour/0800~0899/0888.Fair-Candy-Swap/index.html index 37acc7885..e49776f4a 100644 --- a/website/public/zh/ChapterFour/0800~0899/0888.Fair-Candy-Swap/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0888.Fair-Candy-Swap/index.html @@ -12389,7 +12389,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0890.Find-and-Replace-Pattern/index.html b/website/public/zh/ChapterFour/0800~0899/0890.Find-and-Replace-Pattern/index.html index 2b23427ee..79d04fa75 100644 --- a/website/public/zh/ChapterFour/0800~0899/0890.Find-and-Replace-Pattern/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0890.Find-and-Replace-Pattern/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0891.Sum-of-Subsequence-Widths/index.html b/website/public/zh/ChapterFour/0800~0899/0891.Sum-of-Subsequence-Widths/index.html index 8a2f08835..27322a53a 100644 --- a/website/public/zh/ChapterFour/0800~0899/0891.Sum-of-Subsequence-Widths/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0891.Sum-of-Subsequence-Widths/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0892.Surface-Area-of-3D-Shapes/index.html b/website/public/zh/ChapterFour/0800~0899/0892.Surface-Area-of-3D-Shapes/index.html index 35d418674..44c4e4447 100644 --- a/website/public/zh/ChapterFour/0800~0899/0892.Surface-Area-of-3D-Shapes/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0892.Surface-Area-of-3D-Shapes/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0895.Maximum-Frequency-Stack/index.html b/website/public/zh/ChapterFour/0800~0899/0895.Maximum-Frequency-Stack/index.html index aa18d2188..ae3900302 100644 --- a/website/public/zh/ChapterFour/0800~0899/0895.Maximum-Frequency-Stack/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0895.Maximum-Frequency-Stack/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0896.Monotonic-Array/index.html b/website/public/zh/ChapterFour/0800~0899/0896.Monotonic-Array/index.html index d3dd87b63..c5d82b27f 100644 --- a/website/public/zh/ChapterFour/0800~0899/0896.Monotonic-Array/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0896.Monotonic-Array/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0897.Increasing-Order-Search-Tree/index.html b/website/public/zh/ChapterFour/0800~0899/0897.Increasing-Order-Search-Tree/index.html index 59e66d158..c1a378202 100644 --- a/website/public/zh/ChapterFour/0800~0899/0897.Increasing-Order-Search-Tree/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0897.Increasing-Order-Search-Tree/index.html @@ -12420,7 +12420,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/0898.Bitwise-ORs-of-Subarrays/index.html b/website/public/zh/ChapterFour/0800~0899/0898.Bitwise-ORs-of-Subarrays/index.html index d2a4153ca..1f2e6eb9b 100644 --- a/website/public/zh/ChapterFour/0800~0899/0898.Bitwise-ORs-of-Subarrays/index.html +++ b/website/public/zh/ChapterFour/0800~0899/0898.Bitwise-ORs-of-Subarrays/index.html @@ -12427,7 +12427,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0800~0899/index.html b/website/public/zh/ChapterFour/0800~0899/index.html index da7a24df6..01b4dc2f8 100644 --- a/website/public/zh/ChapterFour/0800~0899/index.html +++ b/website/public/zh/ChapterFour/0800~0899/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0901.Online-Stock-Span/index.html b/website/public/zh/ChapterFour/0900~0999/0901.Online-Stock-Span/index.html index 0996cc487..4ddd60147 100644 --- a/website/public/zh/ChapterFour/0900~0999/0901.Online-Stock-Span/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0901.Online-Stock-Span/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0904.Fruit-Into-Baskets/index.html b/website/public/zh/ChapterFour/0900~0999/0904.Fruit-Into-Baskets/index.html index 946fbee02..cbb0d1472 100644 --- a/website/public/zh/ChapterFour/0900~0999/0904.Fruit-Into-Baskets/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0904.Fruit-Into-Baskets/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0907.Sum-of-Subarray-Minimums/index.html b/website/public/zh/ChapterFour/0900~0999/0907.Sum-of-Subarray-Minimums/index.html index ac3005d6a..e6a028863 100644 --- a/website/public/zh/ChapterFour/0900~0999/0907.Sum-of-Subarray-Minimums/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0907.Sum-of-Subarray-Minimums/index.html @@ -12427,7 +12427,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0909.Snakes-and-Ladders/index.html b/website/public/zh/ChapterFour/0900~0999/0909.Snakes-and-Ladders/index.html index f79fde357..0ff7eb00b 100644 --- a/website/public/zh/ChapterFour/0900~0999/0909.Snakes-and-Ladders/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0909.Snakes-and-Ladders/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0910.Smallest-Range-II/index.html b/website/public/zh/ChapterFour/0900~0999/0910.Smallest-Range-II/index.html index 79badefd6..07d4e4cfc 100644 --- a/website/public/zh/ChapterFour/0900~0999/0910.Smallest-Range-II/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0910.Smallest-Range-II/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0911.Online-Election/index.html b/website/public/zh/ChapterFour/0900~0999/0911.Online-Election/index.html index f9c9d7d3a..397d9fe96 100644 --- a/website/public/zh/ChapterFour/0900~0999/0911.Online-Election/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0911.Online-Election/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0914.X-of-a-Kind-in-a-Deck-of-Cards/index.html b/website/public/zh/ChapterFour/0900~0999/0914.X-of-a-Kind-in-a-Deck-of-Cards/index.html index 0633697a1..467afffd1 100644 --- a/website/public/zh/ChapterFour/0900~0999/0914.X-of-a-Kind-in-a-Deck-of-Cards/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0914.X-of-a-Kind-in-a-Deck-of-Cards/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0916.Word-Subsets/index.html b/website/public/zh/ChapterFour/0900~0999/0916.Word-Subsets/index.html index 25c10ce86..a94bbffb1 100644 --- a/website/public/zh/ChapterFour/0900~0999/0916.Word-Subsets/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0916.Word-Subsets/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0918.Maximum-Sum-Circular-Subarray/index.html b/website/public/zh/ChapterFour/0900~0999/0918.Maximum-Sum-Circular-Subarray/index.html index d86fad4cd..291c1f6a9 100644 --- a/website/public/zh/ChapterFour/0900~0999/0918.Maximum-Sum-Circular-Subarray/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0918.Maximum-Sum-Circular-Subarray/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0920.Number-of-Music-Playlists/index.html b/website/public/zh/ChapterFour/0900~0999/0920.Number-of-Music-Playlists/index.html index 6934562b5..b225adfc0 100644 --- a/website/public/zh/ChapterFour/0900~0999/0920.Number-of-Music-Playlists/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0920.Number-of-Music-Playlists/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0921.Minimum-Add-to-Make-Parentheses-Valid/index.html b/website/public/zh/ChapterFour/0900~0999/0921.Minimum-Add-to-Make-Parentheses-Valid/index.html index 5b8a46bff..0770d2469 100644 --- a/website/public/zh/ChapterFour/0900~0999/0921.Minimum-Add-to-Make-Parentheses-Valid/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0921.Minimum-Add-to-Make-Parentheses-Valid/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0922.Sort-Array-By-Parity-II/index.html b/website/public/zh/ChapterFour/0900~0999/0922.Sort-Array-By-Parity-II/index.html index 5f029ac72..ea84f0f62 100644 --- a/website/public/zh/ChapterFour/0900~0999/0922.Sort-Array-By-Parity-II/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0922.Sort-Array-By-Parity-II/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0923.3Sum-With-Multiplicity/index.html b/website/public/zh/ChapterFour/0900~0999/0923.3Sum-With-Multiplicity/index.html index f6232b5cc..9914358c3 100644 --- a/website/public/zh/ChapterFour/0900~0999/0923.3Sum-With-Multiplicity/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0923.3Sum-With-Multiplicity/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0924.Minimize-Malware-Spread/index.html b/website/public/zh/ChapterFour/0900~0999/0924.Minimize-Malware-Spread/index.html index ebc54747c..12e563ace 100644 --- a/website/public/zh/ChapterFour/0900~0999/0924.Minimize-Malware-Spread/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0924.Minimize-Malware-Spread/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0925.Long-Pressed-Name/index.html b/website/public/zh/ChapterFour/0900~0999/0925.Long-Pressed-Name/index.html index 6da5d7e7f..a4467158c 100644 --- a/website/public/zh/ChapterFour/0900~0999/0925.Long-Pressed-Name/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0925.Long-Pressed-Name/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0927.Three-Equal-Parts/index.html b/website/public/zh/ChapterFour/0900~0999/0927.Three-Equal-Parts/index.html index e86cae45f..32ccc94bd 100644 --- a/website/public/zh/ChapterFour/0900~0999/0927.Three-Equal-Parts/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0927.Three-Equal-Parts/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0928.Minimize-Malware-Spread-II/index.html b/website/public/zh/ChapterFour/0900~0999/0928.Minimize-Malware-Spread-II/index.html index 687dfe93e..6ff612d6e 100644 --- a/website/public/zh/ChapterFour/0900~0999/0928.Minimize-Malware-Spread-II/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0928.Minimize-Malware-Spread-II/index.html @@ -12431,7 +12431,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0930.Binary-Subarrays-With-Sum/index.html b/website/public/zh/ChapterFour/0900~0999/0930.Binary-Subarrays-With-Sum/index.html index 4cc6251b6..c40a486c2 100644 --- a/website/public/zh/ChapterFour/0900~0999/0930.Binary-Subarrays-With-Sum/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0930.Binary-Subarrays-With-Sum/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0933.Number-of-Recent-Calls/index.html b/website/public/zh/ChapterFour/0900~0999/0933.Number-of-Recent-Calls/index.html index 205d5cfe4..933914908 100644 --- a/website/public/zh/ChapterFour/0900~0999/0933.Number-of-Recent-Calls/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0933.Number-of-Recent-Calls/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0938.Range-Sum-of-BST/index.html b/website/public/zh/ChapterFour/0900~0999/0938.Range-Sum-of-BST/index.html index 99ae3bced..6190d0e69 100644 --- a/website/public/zh/ChapterFour/0900~0999/0938.Range-Sum-of-BST/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0938.Range-Sum-of-BST/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0942.DI-String-Match/index.html b/website/public/zh/ChapterFour/0900~0999/0942.DI-String-Match/index.html index cf1b79086..51a32ba14 100644 --- a/website/public/zh/ChapterFour/0900~0999/0942.DI-String-Match/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0942.DI-String-Match/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0946.Validate-Stack-Sequences/index.html b/website/public/zh/ChapterFour/0900~0999/0946.Validate-Stack-Sequences/index.html index 52bbefba8..26b0eaab6 100644 --- a/website/public/zh/ChapterFour/0900~0999/0946.Validate-Stack-Sequences/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0946.Validate-Stack-Sequences/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0947.Most-Stones-Removed-with-Same-Row-or-Column/index.html b/website/public/zh/ChapterFour/0900~0999/0947.Most-Stones-Removed-with-Same-Row-or-Column/index.html index 446ee53b4..6504e6f02 100644 --- a/website/public/zh/ChapterFour/0900~0999/0947.Most-Stones-Removed-with-Same-Row-or-Column/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0947.Most-Stones-Removed-with-Same-Row-or-Column/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0949.Largest-Time-for-Given-Digits/index.html b/website/public/zh/ChapterFour/0900~0999/0949.Largest-Time-for-Given-Digits/index.html index 4b739f929..f0f436c33 100644 --- a/website/public/zh/ChapterFour/0900~0999/0949.Largest-Time-for-Given-Digits/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0949.Largest-Time-for-Given-Digits/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0952.Largest-Component-Size-by-Common-Factor/index.html b/website/public/zh/ChapterFour/0900~0999/0952.Largest-Component-Size-by-Common-Factor/index.html index 81c49ea52..b8db18b8c 100644 --- a/website/public/zh/ChapterFour/0900~0999/0952.Largest-Component-Size-by-Common-Factor/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0952.Largest-Component-Size-by-Common-Factor/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0953.Verifying-an-Alien-Dictionary/index.html b/website/public/zh/ChapterFour/0900~0999/0953.Verifying-an-Alien-Dictionary/index.html index 989504fc0..bb39219d2 100644 --- a/website/public/zh/ChapterFour/0900~0999/0953.Verifying-an-Alien-Dictionary/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0953.Verifying-an-Alien-Dictionary/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0958.Check-Completeness-of-a-Binary-Tree/index.html b/website/public/zh/ChapterFour/0900~0999/0958.Check-Completeness-of-a-Binary-Tree/index.html index a04392e3f..de347b140 100644 --- a/website/public/zh/ChapterFour/0900~0999/0958.Check-Completeness-of-a-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0958.Check-Completeness-of-a-Binary-Tree/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0959.Regions-Cut-By-Slashes/index.html b/website/public/zh/ChapterFour/0900~0999/0959.Regions-Cut-By-Slashes/index.html index 6a7aa95dd..c873f9c28 100644 --- a/website/public/zh/ChapterFour/0900~0999/0959.Regions-Cut-By-Slashes/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0959.Regions-Cut-By-Slashes/index.html @@ -12446,7 +12446,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0961.N-Repeated-Element-in-Size-2N-Array/index.html b/website/public/zh/ChapterFour/0900~0999/0961.N-Repeated-Element-in-Size-2N-Array/index.html index 3d63f9af2..0e046aae9 100644 --- a/website/public/zh/ChapterFour/0900~0999/0961.N-Repeated-Element-in-Size-2N-Array/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0961.N-Repeated-Element-in-Size-2N-Array/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0966.Vowel-Spellchecker/index.html b/website/public/zh/ChapterFour/0900~0999/0966.Vowel-Spellchecker/index.html index da3400ddb..d5851e240 100644 --- a/website/public/zh/ChapterFour/0900~0999/0966.Vowel-Spellchecker/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0966.Vowel-Spellchecker/index.html @@ -12435,7 +12435,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0968.Binary-Tree-Cameras/index.html b/website/public/zh/ChapterFour/0900~0999/0968.Binary-Tree-Cameras/index.html index fc1ec470f..17fcab01e 100644 --- a/website/public/zh/ChapterFour/0900~0999/0968.Binary-Tree-Cameras/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0968.Binary-Tree-Cameras/index.html @@ -12404,7 +12404,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0969.Pancake-Sorting/index.html b/website/public/zh/ChapterFour/0900~0999/0969.Pancake-Sorting/index.html index bfd63b04d..83b33b9d1 100644 --- a/website/public/zh/ChapterFour/0900~0999/0969.Pancake-Sorting/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0969.Pancake-Sorting/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0970.Powerful-Integers/index.html b/website/public/zh/ChapterFour/0900~0999/0970.Powerful-Integers/index.html index 4d1ab2411..ccfccd00e 100644 --- a/website/public/zh/ChapterFour/0900~0999/0970.Powerful-Integers/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0970.Powerful-Integers/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0971.Flip-Binary-Tree-To-Match-Preorder-Traversal/index.html b/website/public/zh/ChapterFour/0900~0999/0971.Flip-Binary-Tree-To-Match-Preorder-Traversal/index.html index 242e9ead8..3c44d0098 100644 --- a/website/public/zh/ChapterFour/0900~0999/0971.Flip-Binary-Tree-To-Match-Preorder-Traversal/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0971.Flip-Binary-Tree-To-Match-Preorder-Traversal/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0973.K-Closest-Points-to-Origin/index.html b/website/public/zh/ChapterFour/0900~0999/0973.K-Closest-Points-to-Origin/index.html index bd5a1b885..27d0c99a2 100644 --- a/website/public/zh/ChapterFour/0900~0999/0973.K-Closest-Points-to-Origin/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0973.K-Closest-Points-to-Origin/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0975.Odd-Even-Jump/index.html b/website/public/zh/ChapterFour/0900~0999/0975.Odd-Even-Jump/index.html index 71901bf1a..6a1fa81a7 100644 --- a/website/public/zh/ChapterFour/0900~0999/0975.Odd-Even-Jump/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0975.Odd-Even-Jump/index.html @@ -12419,7 +12419,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0976.Largest-Perimeter-Triangle/index.html b/website/public/zh/ChapterFour/0900~0999/0976.Largest-Perimeter-Triangle/index.html index 2ebb55f6d..32b838904 100644 --- a/website/public/zh/ChapterFour/0900~0999/0976.Largest-Perimeter-Triangle/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0976.Largest-Perimeter-Triangle/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0977.Squares-of-a-Sorted-Array/index.html b/website/public/zh/ChapterFour/0900~0999/0977.Squares-of-a-Sorted-Array/index.html index 74375be93..5e6894e5e 100644 --- a/website/public/zh/ChapterFour/0900~0999/0977.Squares-of-a-Sorted-Array/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0977.Squares-of-a-Sorted-Array/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0978.Longest-Turbulent-Subarray/index.html b/website/public/zh/ChapterFour/0900~0999/0978.Longest-Turbulent-Subarray/index.html index 42939c676..e292eaab1 100644 --- a/website/public/zh/ChapterFour/0900~0999/0978.Longest-Turbulent-Subarray/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0978.Longest-Turbulent-Subarray/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0979.Distribute-Coins-in-Binary-Tree/index.html b/website/public/zh/ChapterFour/0900~0999/0979.Distribute-Coins-in-Binary-Tree/index.html index 01a579625..8a9891124 100644 --- a/website/public/zh/ChapterFour/0900~0999/0979.Distribute-Coins-in-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0979.Distribute-Coins-in-Binary-Tree/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0980.Unique-Paths-III/index.html b/website/public/zh/ChapterFour/0900~0999/0980.Unique-Paths-III/index.html index 3f76dd0db..35a7910a7 100644 --- a/website/public/zh/ChapterFour/0900~0999/0980.Unique-Paths-III/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0980.Unique-Paths-III/index.html @@ -12423,7 +12423,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0981.Time-Based-Key-Value-Store/index.html b/website/public/zh/ChapterFour/0900~0999/0981.Time-Based-Key-Value-Store/index.html index 33f1b4d0a..f8a85eb0d 100644 --- a/website/public/zh/ChapterFour/0900~0999/0981.Time-Based-Key-Value-Store/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0981.Time-Based-Key-Value-Store/index.html @@ -12428,7 +12428,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0984.String-Without-AAA-or-BBB/index.html b/website/public/zh/ChapterFour/0900~0999/0984.String-Without-AAA-or-BBB/index.html index 8c0fc1e35..ee6d0eeeb 100644 --- a/website/public/zh/ChapterFour/0900~0999/0984.String-Without-AAA-or-BBB/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0984.String-Without-AAA-or-BBB/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0985.Sum-of-Even-Numbers-After-Queries/index.html b/website/public/zh/ChapterFour/0900~0999/0985.Sum-of-Even-Numbers-After-Queries/index.html index b1d675807..4b398cad5 100644 --- a/website/public/zh/ChapterFour/0900~0999/0985.Sum-of-Even-Numbers-After-Queries/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0985.Sum-of-Even-Numbers-After-Queries/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0986.Interval-List-Intersections/index.html b/website/public/zh/ChapterFour/0900~0999/0986.Interval-List-Intersections/index.html index 062ac565b..301395e06 100644 --- a/website/public/zh/ChapterFour/0900~0999/0986.Interval-List-Intersections/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0986.Interval-List-Intersections/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0987.Vertical-Order-Traversal-of-a-Binary-Tree/index.html b/website/public/zh/ChapterFour/0900~0999/0987.Vertical-Order-Traversal-of-a-Binary-Tree/index.html index 22b7fe965..bde541cd5 100644 --- a/website/public/zh/ChapterFour/0900~0999/0987.Vertical-Order-Traversal-of-a-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0987.Vertical-Order-Traversal-of-a-Binary-Tree/index.html @@ -12422,7 +12422,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0989.Add-to-Array-Form-of-Integer/index.html b/website/public/zh/ChapterFour/0900~0999/0989.Add-to-Array-Form-of-Integer/index.html index 37d958ec9..867f90de3 100644 --- a/website/public/zh/ChapterFour/0900~0999/0989.Add-to-Array-Form-of-Integer/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0989.Add-to-Array-Form-of-Integer/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0990.Satisfiability-of-Equality-Equations/index.html b/website/public/zh/ChapterFour/0900~0999/0990.Satisfiability-of-Equality-Equations/index.html index 147b9b32c..215eed42d 100644 --- a/website/public/zh/ChapterFour/0900~0999/0990.Satisfiability-of-Equality-Equations/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0990.Satisfiability-of-Equality-Equations/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0991.Broken-Calculator/index.html b/website/public/zh/ChapterFour/0900~0999/0991.Broken-Calculator/index.html index 2e9602f72..1f8276b7b 100644 --- a/website/public/zh/ChapterFour/0900~0999/0991.Broken-Calculator/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0991.Broken-Calculator/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0992.Subarrays-with-K-Different-Integers/index.html b/website/public/zh/ChapterFour/0900~0999/0992.Subarrays-with-K-Different-Integers/index.html index ccc73979a..028ecee8e 100644 --- a/website/public/zh/ChapterFour/0900~0999/0992.Subarrays-with-K-Different-Integers/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0992.Subarrays-with-K-Different-Integers/index.html @@ -12389,7 +12389,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0993.Cousins-in-Binary-Tree/index.html b/website/public/zh/ChapterFour/0900~0999/0993.Cousins-in-Binary-Tree/index.html index cc6b8c29b..d4d8f1a7a 100644 --- a/website/public/zh/ChapterFour/0900~0999/0993.Cousins-in-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0993.Cousins-in-Binary-Tree/index.html @@ -12455,7 +12455,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0995.Minimum-Number-of-K-Consecutive-Bit-Flips/index.html b/website/public/zh/ChapterFour/0900~0999/0995.Minimum-Number-of-K-Consecutive-Bit-Flips/index.html index 4d04fe924..d9b6b07ad 100644 --- a/website/public/zh/ChapterFour/0900~0999/0995.Minimum-Number-of-K-Consecutive-Bit-Flips/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0995.Minimum-Number-of-K-Consecutive-Bit-Flips/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0996.Number-of-Squareful-Arrays/index.html b/website/public/zh/ChapterFour/0900~0999/0996.Number-of-Squareful-Arrays/index.html index 725dbf654..68d51d804 100644 --- a/website/public/zh/ChapterFour/0900~0999/0996.Number-of-Squareful-Arrays/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0996.Number-of-Squareful-Arrays/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0997.Find-the-Town-Judge/index.html b/website/public/zh/ChapterFour/0900~0999/0997.Find-the-Town-Judge/index.html index 53dbc6732..f81c40e9b 100644 --- a/website/public/zh/ChapterFour/0900~0999/0997.Find-the-Town-Judge/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0997.Find-the-Town-Judge/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/0999.Available-Captures-for-Rook/index.html b/website/public/zh/ChapterFour/0900~0999/0999.Available-Captures-for-Rook/index.html index 37e813e11..c91ddd36c 100644 --- a/website/public/zh/ChapterFour/0900~0999/0999.Available-Captures-for-Rook/index.html +++ b/website/public/zh/ChapterFour/0900~0999/0999.Available-Captures-for-Rook/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/0900~0999/index.html b/website/public/zh/ChapterFour/0900~0999/index.html index 2a84f0149..4fc0282b9 100644 --- a/website/public/zh/ChapterFour/0900~0999/index.html +++ b/website/public/zh/ChapterFour/0900~0999/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1002.Find-Common-Characters/index.html b/website/public/zh/ChapterFour/1000~1099/1002.Find-Common-Characters/index.html index e69d6b20a..3ce633f9c 100644 --- a/website/public/zh/ChapterFour/1000~1099/1002.Find-Common-Characters/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1002.Find-Common-Characters/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1003.Check-If-Word-Is-Valid-After-Substitutions/index.html b/website/public/zh/ChapterFour/1000~1099/1003.Check-If-Word-Is-Valid-After-Substitutions/index.html index b40cce625..4e61acc11 100644 --- a/website/public/zh/ChapterFour/1000~1099/1003.Check-If-Word-Is-Valid-After-Substitutions/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1003.Check-If-Word-Is-Valid-After-Substitutions/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1004.Max-Consecutive-Ones-III/index.html b/website/public/zh/ChapterFour/1000~1099/1004.Max-Consecutive-Ones-III/index.html index 41d42bbdb..2a09bab11 100644 --- a/website/public/zh/ChapterFour/1000~1099/1004.Max-Consecutive-Ones-III/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1004.Max-Consecutive-Ones-III/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1005.Maximize-Sum-Of-Array-After-K-Negations/index.html b/website/public/zh/ChapterFour/1000~1099/1005.Maximize-Sum-Of-Array-After-K-Negations/index.html index fb65ca597..b5d86580e 100644 --- a/website/public/zh/ChapterFour/1000~1099/1005.Maximize-Sum-Of-Array-After-K-Negations/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1005.Maximize-Sum-Of-Array-After-K-Negations/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1006.Clumsy-Factorial/index.html b/website/public/zh/ChapterFour/1000~1099/1006.Clumsy-Factorial/index.html index 1a69c5983..d33fe3fcf 100644 --- a/website/public/zh/ChapterFour/1000~1099/1006.Clumsy-Factorial/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1006.Clumsy-Factorial/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1009.Complement-of-Base-10-Integer/index.html b/website/public/zh/ChapterFour/1000~1099/1009.Complement-of-Base-10-Integer/index.html index fbcec6a93..d82a9270e 100644 --- a/website/public/zh/ChapterFour/1000~1099/1009.Complement-of-Base-10-Integer/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1009.Complement-of-Base-10-Integer/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1010.Pairs-of-Songs-With-Total-Durations-Divisible-by-60/index.html b/website/public/zh/ChapterFour/1000~1099/1010.Pairs-of-Songs-With-Total-Durations-Divisible-by-60/index.html index cd2210a54..119031bff 100644 --- a/website/public/zh/ChapterFour/1000~1099/1010.Pairs-of-Songs-With-Total-Durations-Divisible-by-60/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1010.Pairs-of-Songs-With-Total-Durations-Divisible-by-60/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1011.Capacity-To-Ship-Packages-Within-D-Days/index.html b/website/public/zh/ChapterFour/1000~1099/1011.Capacity-To-Ship-Packages-Within-D-Days/index.html index aab6f89c2..16161cdf0 100644 --- a/website/public/zh/ChapterFour/1000~1099/1011.Capacity-To-Ship-Packages-Within-D-Days/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1011.Capacity-To-Ship-Packages-Within-D-Days/index.html @@ -12405,7 +12405,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1017.Convert-to-Base-2/index.html b/website/public/zh/ChapterFour/1000~1099/1017.Convert-to-Base-2/index.html index 1f4d380e0..3b93be87a 100644 --- a/website/public/zh/ChapterFour/1000~1099/1017.Convert-to-Base-2/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1017.Convert-to-Base-2/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1018.Binary-Prefix-Divisible-By-5/index.html b/website/public/zh/ChapterFour/1000~1099/1018.Binary-Prefix-Divisible-By-5/index.html index 3584ea5c0..809c2e9fa 100644 --- a/website/public/zh/ChapterFour/1000~1099/1018.Binary-Prefix-Divisible-By-5/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1018.Binary-Prefix-Divisible-By-5/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1019.Next-Greater-Node-In-Linked-List/index.html b/website/public/zh/ChapterFour/1000~1099/1019.Next-Greater-Node-In-Linked-List/index.html index 7be6345e8..30e8c2594 100644 --- a/website/public/zh/ChapterFour/1000~1099/1019.Next-Greater-Node-In-Linked-List/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1019.Next-Greater-Node-In-Linked-List/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1020.Number-of-Enclaves/index.html b/website/public/zh/ChapterFour/1000~1099/1020.Number-of-Enclaves/index.html index 03f664d4a..08c09cf2b 100644 --- a/website/public/zh/ChapterFour/1000~1099/1020.Number-of-Enclaves/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1020.Number-of-Enclaves/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1021.Remove-Outermost-Parentheses/index.html b/website/public/zh/ChapterFour/1000~1099/1021.Remove-Outermost-Parentheses/index.html index 116d47ba8..463da413a 100644 --- a/website/public/zh/ChapterFour/1000~1099/1021.Remove-Outermost-Parentheses/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1021.Remove-Outermost-Parentheses/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1022.Sum-of-Root-To-Leaf-Binary-Numbers/index.html b/website/public/zh/ChapterFour/1000~1099/1022.Sum-of-Root-To-Leaf-Binary-Numbers/index.html index 48c06c8ab..0ed84b76e 100644 --- a/website/public/zh/ChapterFour/1000~1099/1022.Sum-of-Root-To-Leaf-Binary-Numbers/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1022.Sum-of-Root-To-Leaf-Binary-Numbers/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1025.Divisor-Game/index.html b/website/public/zh/ChapterFour/1000~1099/1025.Divisor-Game/index.html index 2d5d9f49c..73e6b1d0c 100644 --- a/website/public/zh/ChapterFour/1000~1099/1025.Divisor-Game/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1025.Divisor-Game/index.html @@ -12355,7 +12355,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1026.Maximum-Difference-Between-Node-and-Ancestor/index.html b/website/public/zh/ChapterFour/1000~1099/1026.Maximum-Difference-Between-Node-and-Ancestor/index.html index fd147c4c2..8a8177fa3 100644 --- a/website/public/zh/ChapterFour/1000~1099/1026.Maximum-Difference-Between-Node-and-Ancestor/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1026.Maximum-Difference-Between-Node-and-Ancestor/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1028.Recover-a-Tree-From-Preorder-Traversal/index.html b/website/public/zh/ChapterFour/1000~1099/1028.Recover-a-Tree-From-Preorder-Traversal/index.html index 9fce569bd..cdbf37f66 100644 --- a/website/public/zh/ChapterFour/1000~1099/1028.Recover-a-Tree-From-Preorder-Traversal/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1028.Recover-a-Tree-From-Preorder-Traversal/index.html @@ -12425,7 +12425,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1030.Matrix-Cells-in-Distance-Order/index.html b/website/public/zh/ChapterFour/1000~1099/1030.Matrix-Cells-in-Distance-Order/index.html index 7bb8ae623..1267951c2 100644 --- a/website/public/zh/ChapterFour/1000~1099/1030.Matrix-Cells-in-Distance-Order/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1030.Matrix-Cells-in-Distance-Order/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1034.Coloring-A-Border/index.html b/website/public/zh/ChapterFour/1000~1099/1034.Coloring-A-Border/index.html index 75d86d91d..f01aef65f 100644 --- a/website/public/zh/ChapterFour/1000~1099/1034.Coloring-A-Border/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1034.Coloring-A-Border/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1037.Valid-Boomerang/index.html b/website/public/zh/ChapterFour/1000~1099/1037.Valid-Boomerang/index.html index ba28cf806..9257e37f5 100644 --- a/website/public/zh/ChapterFour/1000~1099/1037.Valid-Boomerang/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1037.Valid-Boomerang/index.html @@ -12348,7 +12348,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1038.Binary-Search-Tree-to-Greater-Sum-Tree/index.html b/website/public/zh/ChapterFour/1000~1099/1038.Binary-Search-Tree-to-Greater-Sum-Tree/index.html index 1ff1f87b5..afceb714e 100644 --- a/website/public/zh/ChapterFour/1000~1099/1038.Binary-Search-Tree-to-Greater-Sum-Tree/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1038.Binary-Search-Tree-to-Greater-Sum-Tree/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1040.Moving-Stones-Until-Consecutive-II/index.html b/website/public/zh/ChapterFour/1000~1099/1040.Moving-Stones-Until-Consecutive-II/index.html index 7ef323f8a..977ab1b5a 100644 --- a/website/public/zh/ChapterFour/1000~1099/1040.Moving-Stones-Until-Consecutive-II/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1040.Moving-Stones-Until-Consecutive-II/index.html @@ -12419,7 +12419,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1044.Longest-Duplicate-Substring/index.html b/website/public/zh/ChapterFour/1000~1099/1044.Longest-Duplicate-Substring/index.html index 34651ceb2..852d9a10e 100644 --- a/website/public/zh/ChapterFour/1000~1099/1044.Longest-Duplicate-Substring/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1044.Longest-Duplicate-Substring/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1047.Remove-All-Adjacent-Duplicates-In-String/index.html b/website/public/zh/ChapterFour/1000~1099/1047.Remove-All-Adjacent-Duplicates-In-String/index.html index fa139f718..d249a4395 100644 --- a/website/public/zh/ChapterFour/1000~1099/1047.Remove-All-Adjacent-Duplicates-In-String/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1047.Remove-All-Adjacent-Duplicates-In-String/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1048.Longest-String-Chain/index.html b/website/public/zh/ChapterFour/1000~1099/1048.Longest-String-Chain/index.html index 6f58fd939..605c072d7 100644 --- a/website/public/zh/ChapterFour/1000~1099/1048.Longest-String-Chain/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1048.Longest-String-Chain/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1049.Last-Stone-Weight-II/index.html b/website/public/zh/ChapterFour/1000~1099/1049.Last-Stone-Weight-II/index.html index 70822e00e..eef0dc525 100644 --- a/website/public/zh/ChapterFour/1000~1099/1049.Last-Stone-Weight-II/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1049.Last-Stone-Weight-II/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1051.Height-Checker/index.html b/website/public/zh/ChapterFour/1000~1099/1051.Height-Checker/index.html index b81182368..64db77d71 100644 --- a/website/public/zh/ChapterFour/1000~1099/1051.Height-Checker/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1051.Height-Checker/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1052.Grumpy-Bookstore-Owner/index.html b/website/public/zh/ChapterFour/1000~1099/1052.Grumpy-Bookstore-Owner/index.html index df1452692..653520f47 100644 --- a/website/public/zh/ChapterFour/1000~1099/1052.Grumpy-Bookstore-Owner/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1052.Grumpy-Bookstore-Owner/index.html @@ -12397,7 +12397,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1054.Distant-Barcodes/index.html b/website/public/zh/ChapterFour/1000~1099/1054.Distant-Barcodes/index.html index c38f9c4e5..279b7c809 100644 --- a/website/public/zh/ChapterFour/1000~1099/1054.Distant-Barcodes/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1054.Distant-Barcodes/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1073.Adding-Two-Negabinary-Numbers/index.html b/website/public/zh/ChapterFour/1000~1099/1073.Adding-Two-Negabinary-Numbers/index.html index 366bce300..e20026866 100644 --- a/website/public/zh/ChapterFour/1000~1099/1073.Adding-Two-Negabinary-Numbers/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1073.Adding-Two-Negabinary-Numbers/index.html @@ -12437,7 +12437,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1074.Number-of-Submatrices-That-Sum-to-Target/index.html b/website/public/zh/ChapterFour/1000~1099/1074.Number-of-Submatrices-That-Sum-to-Target/index.html index d8585b427..85f105f26 100644 --- a/website/public/zh/ChapterFour/1000~1099/1074.Number-of-Submatrices-That-Sum-to-Target/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1074.Number-of-Submatrices-That-Sum-to-Target/index.html @@ -12452,7 +12452,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1078.Occurrences-After-Bigram/index.html b/website/public/zh/ChapterFour/1000~1099/1078.Occurrences-After-Bigram/index.html index 1ba6d413b..c68d5991b 100644 --- a/website/public/zh/ChapterFour/1000~1099/1078.Occurrences-After-Bigram/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1078.Occurrences-After-Bigram/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1079.Letter-Tile-Possibilities/index.html b/website/public/zh/ChapterFour/1000~1099/1079.Letter-Tile-Possibilities/index.html index 377f83f00..b27751ba9 100644 --- a/website/public/zh/ChapterFour/1000~1099/1079.Letter-Tile-Possibilities/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1079.Letter-Tile-Possibilities/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1089.Duplicate-Zeros/index.html b/website/public/zh/ChapterFour/1000~1099/1089.Duplicate-Zeros/index.html index 57e83b402..43f6650ec 100644 --- a/website/public/zh/ChapterFour/1000~1099/1089.Duplicate-Zeros/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1089.Duplicate-Zeros/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1091.Shortest-Path-in-Binary-Matrix/index.html b/website/public/zh/ChapterFour/1000~1099/1091.Shortest-Path-in-Binary-Matrix/index.html index 6cfcf6bb0..3ac1cf589 100644 --- a/website/public/zh/ChapterFour/1000~1099/1091.Shortest-Path-in-Binary-Matrix/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1091.Shortest-Path-in-Binary-Matrix/index.html @@ -12407,7 +12407,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/1093.Statistics-from-a-Large-Sample/index.html b/website/public/zh/ChapterFour/1000~1099/1093.Statistics-from-a-Large-Sample/index.html index fe090c73c..c835a9da4 100644 --- a/website/public/zh/ChapterFour/1000~1099/1093.Statistics-from-a-Large-Sample/index.html +++ b/website/public/zh/ChapterFour/1000~1099/1093.Statistics-from-a-Large-Sample/index.html @@ -12406,7 +12406,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1000~1099/index.html b/website/public/zh/ChapterFour/1000~1099/index.html index bdba1c341..89eb776e7 100644 --- a/website/public/zh/ChapterFour/1000~1099/index.html +++ b/website/public/zh/ChapterFour/1000~1099/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1104.Path-In-Zigzag-Labelled-Binary-Tree/index.html b/website/public/zh/ChapterFour/1100~1199/1104.Path-In-Zigzag-Labelled-Binary-Tree/index.html index 41f1439d5..bc32bf39d 100644 --- a/website/public/zh/ChapterFour/1100~1199/1104.Path-In-Zigzag-Labelled-Binary-Tree/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1104.Path-In-Zigzag-Labelled-Binary-Tree/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1105.Filling-Bookcase-Shelves/index.html b/website/public/zh/ChapterFour/1100~1199/1105.Filling-Bookcase-Shelves/index.html index 229dd309a..ecb743443 100644 --- a/website/public/zh/ChapterFour/1100~1199/1105.Filling-Bookcase-Shelves/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1105.Filling-Bookcase-Shelves/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1108.Defanging-an-IP-Address/index.html b/website/public/zh/ChapterFour/1100~1199/1108.Defanging-an-IP-Address/index.html index 237c36d2f..f0ec86ae4 100644 --- a/website/public/zh/ChapterFour/1100~1199/1108.Defanging-an-IP-Address/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1108.Defanging-an-IP-Address/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1110.Delete-Nodes-And-Return-Forest/index.html b/website/public/zh/ChapterFour/1100~1199/1110.Delete-Nodes-And-Return-Forest/index.html index 136e207e6..b77f234e3 100644 --- a/website/public/zh/ChapterFour/1100~1199/1110.Delete-Nodes-And-Return-Forest/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1110.Delete-Nodes-And-Return-Forest/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1111.Maximum-Nesting-Depth-of-Two-Valid-Parentheses-Strings/index.html b/website/public/zh/ChapterFour/1100~1199/1111.Maximum-Nesting-Depth-of-Two-Valid-Parentheses-Strings/index.html index 927f1c95b..8d0706cc7 100644 --- a/website/public/zh/ChapterFour/1100~1199/1111.Maximum-Nesting-Depth-of-Two-Valid-Parentheses-Strings/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1111.Maximum-Nesting-Depth-of-Two-Valid-Parentheses-Strings/index.html @@ -12420,7 +12420,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1122.Relative-Sort-Array/index.html b/website/public/zh/ChapterFour/1100~1199/1122.Relative-Sort-Array/index.html index c189c4fd1..4ee41174d 100644 --- a/website/public/zh/ChapterFour/1100~1199/1122.Relative-Sort-Array/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1122.Relative-Sort-Array/index.html @@ -12398,7 +12398,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1123.Lowest-Common-Ancestor-of-Deepest-Leaves/index.html b/website/public/zh/ChapterFour/1100~1199/1123.Lowest-Common-Ancestor-of-Deepest-Leaves/index.html index 18d1d1f34..901a68d44 100644 --- a/website/public/zh/ChapterFour/1100~1199/1123.Lowest-Common-Ancestor-of-Deepest-Leaves/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1123.Lowest-Common-Ancestor-of-Deepest-Leaves/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1128.Number-of-Equivalent-Domino-Pairs/index.html b/website/public/zh/ChapterFour/1100~1199/1128.Number-of-Equivalent-Domino-Pairs/index.html index 39794b4d1..9206b6b3a 100644 --- a/website/public/zh/ChapterFour/1100~1199/1128.Number-of-Equivalent-Domino-Pairs/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1128.Number-of-Equivalent-Domino-Pairs/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1137.N-th-Tribonacci-Number/index.html b/website/public/zh/ChapterFour/1100~1199/1137.N-th-Tribonacci-Number/index.html index 6080fd3af..82b59640e 100644 --- a/website/public/zh/ChapterFour/1100~1199/1137.N-th-Tribonacci-Number/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1137.N-th-Tribonacci-Number/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1143.Longest-Common-Subsequence/index.html b/website/public/zh/ChapterFour/1100~1199/1143.Longest-Common-Subsequence/index.html index 275ea1e00..2b9f97108 100644 --- a/website/public/zh/ChapterFour/1100~1199/1143.Longest-Common-Subsequence/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1143.Longest-Common-Subsequence/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1145.Binary-Tree-Coloring-Game/index.html b/website/public/zh/ChapterFour/1100~1199/1145.Binary-Tree-Coloring-Game/index.html index 9581d5851..d983e8ab7 100644 --- a/website/public/zh/ChapterFour/1100~1199/1145.Binary-Tree-Coloring-Game/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1145.Binary-Tree-Coloring-Game/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1154.Day-of-the-Year/index.html b/website/public/zh/ChapterFour/1100~1199/1154.Day-of-the-Year/index.html index 618baa83c..5fc03ce98 100644 --- a/website/public/zh/ChapterFour/1100~1199/1154.Day-of-the-Year/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1154.Day-of-the-Year/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1157.Online-Majority-Element-In-Subarray/index.html b/website/public/zh/ChapterFour/1100~1199/1157.Online-Majority-Element-In-Subarray/index.html index 50692577d..3be60efa8 100644 --- a/website/public/zh/ChapterFour/1100~1199/1157.Online-Majority-Element-In-Subarray/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1157.Online-Majority-Element-In-Subarray/index.html @@ -12501,7 +12501,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1160.Find-Words-That-Can-Be-Formed-by-Characters/index.html b/website/public/zh/ChapterFour/1100~1199/1160.Find-Words-That-Can-Be-Formed-by-Characters/index.html index 7ea64be97..ef9f15ad4 100644 --- a/website/public/zh/ChapterFour/1100~1199/1160.Find-Words-That-Can-Be-Formed-by-Characters/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1160.Find-Words-That-Can-Be-Formed-by-Characters/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1170.Compare-Strings-by-Frequency-of-the-Smallest-Character/index.html b/website/public/zh/ChapterFour/1100~1199/1170.Compare-Strings-by-Frequency-of-the-Smallest-Character/index.html index 38c789e1a..2e552dd55 100644 --- a/website/public/zh/ChapterFour/1100~1199/1170.Compare-Strings-by-Frequency-of-the-Smallest-Character/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1170.Compare-Strings-by-Frequency-of-the-Smallest-Character/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1171.Remove-Zero-Sum-Consecutive-Nodes-from-Linked-List/index.html b/website/public/zh/ChapterFour/1100~1199/1171.Remove-Zero-Sum-Consecutive-Nodes-from-Linked-List/index.html index 7818e35b6..af7c5bb3d 100644 --- a/website/public/zh/ChapterFour/1100~1199/1171.Remove-Zero-Sum-Consecutive-Nodes-from-Linked-List/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1171.Remove-Zero-Sum-Consecutive-Nodes-from-Linked-List/index.html @@ -12433,7 +12433,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1175.Prime-Arrangements/index.html b/website/public/zh/ChapterFour/1100~1199/1175.Prime-Arrangements/index.html index 98e90160b..4b441b284 100644 --- a/website/public/zh/ChapterFour/1100~1199/1175.Prime-Arrangements/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1175.Prime-Arrangements/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle/index.html b/website/public/zh/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle/index.html index c2605a47e..e6eaa1300 100644 --- a/website/public/zh/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle/index.html @@ -12414,7 +12414,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1184.Distance-Between-Bus-Stops/index.html b/website/public/zh/ChapterFour/1100~1199/1184.Distance-Between-Bus-Stops/index.html index 619bd42c1..a14334ea8 100644 --- a/website/public/zh/ChapterFour/1100~1199/1184.Distance-Between-Bus-Stops/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1184.Distance-Between-Bus-Stops/index.html @@ -12376,7 +12376,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1185.Day-of-the-Week/index.html b/website/public/zh/ChapterFour/1100~1199/1185.Day-of-the-Week/index.html index 40e956651..0f369b086 100644 --- a/website/public/zh/ChapterFour/1100~1199/1185.Day-of-the-Week/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1185.Day-of-the-Week/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1189.Maximum-Number-of-Balloons/index.html b/website/public/zh/ChapterFour/1100~1199/1189.Maximum-Number-of-Balloons/index.html index d1175c985..2fd89eee5 100644 --- a/website/public/zh/ChapterFour/1100~1199/1189.Maximum-Number-of-Balloons/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1189.Maximum-Number-of-Balloons/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/1190.Reverse-Substrings-Between-Each-Pair-of-Parentheses/index.html b/website/public/zh/ChapterFour/1100~1199/1190.Reverse-Substrings-Between-Each-Pair-of-Parentheses/index.html index bba106c38..e203d723b 100644 --- a/website/public/zh/ChapterFour/1100~1199/1190.Reverse-Substrings-Between-Each-Pair-of-Parentheses/index.html +++ b/website/public/zh/ChapterFour/1100~1199/1190.Reverse-Substrings-Between-Each-Pair-of-Parentheses/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1100~1199/index.html b/website/public/zh/ChapterFour/1100~1199/index.html index 0baf396bd..66fde9ba2 100644 --- a/website/public/zh/ChapterFour/1100~1199/index.html +++ b/website/public/zh/ChapterFour/1100~1199/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1200.Minimum-Absolute-Difference/index.html b/website/public/zh/ChapterFour/1200~1299/1200.Minimum-Absolute-Difference/index.html index 1a6efa10e..ca8b5c253 100644 --- a/website/public/zh/ChapterFour/1200~1299/1200.Minimum-Absolute-Difference/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1200.Minimum-Absolute-Difference/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1201.Ugly-Number-III/index.html b/website/public/zh/ChapterFour/1200~1299/1201.Ugly-Number-III/index.html index d8c5ef7e3..79f599580 100644 --- a/website/public/zh/ChapterFour/1200~1299/1201.Ugly-Number-III/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1201.Ugly-Number-III/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1202.Smallest-String-With-Swaps/index.html b/website/public/zh/ChapterFour/1200~1299/1202.Smallest-String-With-Swaps/index.html index ecbb5555c..b3a40d326 100644 --- a/website/public/zh/ChapterFour/1200~1299/1202.Smallest-String-With-Swaps/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1202.Smallest-String-With-Swaps/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1203.Sort-Items-by-Groups-Respecting-Dependencies/index.html b/website/public/zh/ChapterFour/1200~1299/1203.Sort-Items-by-Groups-Respecting-Dependencies/index.html index c4a9947c8..8f2484691 100644 --- a/website/public/zh/ChapterFour/1200~1299/1203.Sort-Items-by-Groups-Respecting-Dependencies/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1203.Sort-Items-by-Groups-Respecting-Dependencies/index.html @@ -12484,7 +12484,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1207.Unique-Number-of-Occurrences/index.html b/website/public/zh/ChapterFour/1200~1299/1207.Unique-Number-of-Occurrences/index.html index 45b5c1e26..a116a3b69 100644 --- a/website/public/zh/ChapterFour/1200~1299/1207.Unique-Number-of-Occurrences/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1207.Unique-Number-of-Occurrences/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1208.Get-Equal-Substrings-Within-Budget/index.html b/website/public/zh/ChapterFour/1200~1299/1208.Get-Equal-Substrings-Within-Budget/index.html index f28dabdc4..637896c59 100644 --- a/website/public/zh/ChapterFour/1200~1299/1208.Get-Equal-Substrings-Within-Budget/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1208.Get-Equal-Substrings-Within-Budget/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1209.Remove-All-Adjacent-Duplicates-in-String-II/index.html b/website/public/zh/ChapterFour/1200~1299/1209.Remove-All-Adjacent-Duplicates-in-String-II/index.html index ba5e2c7a1..932bf1eec 100644 --- a/website/public/zh/ChapterFour/1200~1299/1209.Remove-All-Adjacent-Duplicates-in-String-II/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1209.Remove-All-Adjacent-Duplicates-in-String-II/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1217.Minimum-Cost-to-Move-Chips-to-The-Same-Position/index.html b/website/public/zh/ChapterFour/1200~1299/1217.Minimum-Cost-to-Move-Chips-to-The-Same-Position/index.html index 9e621b2a6..f3af6114b 100644 --- a/website/public/zh/ChapterFour/1200~1299/1217.Minimum-Cost-to-Move-Chips-to-The-Same-Position/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1217.Minimum-Cost-to-Move-Chips-to-The-Same-Position/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1221.Split-a-String-in-Balanced-Strings/index.html b/website/public/zh/ChapterFour/1200~1299/1221.Split-a-String-in-Balanced-Strings/index.html index 676451a40..468b30bcf 100644 --- a/website/public/zh/ChapterFour/1200~1299/1221.Split-a-String-in-Balanced-Strings/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1221.Split-a-String-in-Balanced-Strings/index.html @@ -12371,7 +12371,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1232.Check-If-It-Is-a-Straight-Line/index.html b/website/public/zh/ChapterFour/1200~1299/1232.Check-If-It-Is-a-Straight-Line/index.html index 43c81b3db..17f793e96 100644 --- a/website/public/zh/ChapterFour/1200~1299/1232.Check-If-It-Is-a-Straight-Line/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1232.Check-If-It-Is-a-Straight-Line/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1234.Replace-the-Substring-for-Balanced-String/index.html b/website/public/zh/ChapterFour/1200~1299/1234.Replace-the-Substring-for-Balanced-String/index.html index b56763996..edf6e20d6 100644 --- a/website/public/zh/ChapterFour/1200~1299/1234.Replace-the-Substring-for-Balanced-String/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1234.Replace-the-Substring-for-Balanced-String/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1235.Maximum-Profit-in-Job-Scheduling/index.html b/website/public/zh/ChapterFour/1200~1299/1235.Maximum-Profit-in-Job-Scheduling/index.html index 8d51f9f43..bd5113176 100644 --- a/website/public/zh/ChapterFour/1200~1299/1235.Maximum-Profit-in-Job-Scheduling/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1235.Maximum-Profit-in-Job-Scheduling/index.html @@ -12410,7 +12410,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1239.Maximum-Length-of-a-Concatenated-String-with-Unique-Characters/index.html b/website/public/zh/ChapterFour/1200~1299/1239.Maximum-Length-of-a-Concatenated-String-with-Unique-Characters/index.html index b80228a49..9638dcd94 100644 --- a/website/public/zh/ChapterFour/1200~1299/1239.Maximum-Length-of-a-Concatenated-String-with-Unique-Characters/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1239.Maximum-Length-of-a-Concatenated-String-with-Unique-Characters/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1249.Minimum-Remove-to-Make-Valid-Parentheses/index.html b/website/public/zh/ChapterFour/1200~1299/1249.Minimum-Remove-to-Make-Valid-Parentheses/index.html index 88b092240..9e8360e62 100644 --- a/website/public/zh/ChapterFour/1200~1299/1249.Minimum-Remove-to-Make-Valid-Parentheses/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1249.Minimum-Remove-to-Make-Valid-Parentheses/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1252.Cells-with-Odd-Values-in-a-Matrix/index.html b/website/public/zh/ChapterFour/1200~1299/1252.Cells-with-Odd-Values-in-a-Matrix/index.html index 5e8d482a1..2c594f366 100644 --- a/website/public/zh/ChapterFour/1200~1299/1252.Cells-with-Odd-Values-in-a-Matrix/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1252.Cells-with-Odd-Values-in-a-Matrix/index.html @@ -12397,7 +12397,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1254.Number-of-Closed-Islands/index.html b/website/public/zh/ChapterFour/1200~1299/1254.Number-of-Closed-Islands/index.html index 05ba3f7a9..24670e853 100644 --- a/website/public/zh/ChapterFour/1200~1299/1254.Number-of-Closed-Islands/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1254.Number-of-Closed-Islands/index.html @@ -12409,7 +12409,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1260.Shift-2D-Grid/index.html b/website/public/zh/ChapterFour/1200~1299/1260.Shift-2D-Grid/index.html index 21f435acd..15733a1c1 100644 --- a/website/public/zh/ChapterFour/1200~1299/1260.Shift-2D-Grid/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1260.Shift-2D-Grid/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1266.Minimum-Time-Visiting-All-Points/index.html b/website/public/zh/ChapterFour/1200~1299/1266.Minimum-Time-Visiting-All-Points/index.html index 49426751e..0a602fa7c 100644 --- a/website/public/zh/ChapterFour/1200~1299/1266.Minimum-Time-Visiting-All-Points/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1266.Minimum-Time-Visiting-All-Points/index.html @@ -12370,7 +12370,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1268.Search-Suggestions-System/index.html b/website/public/zh/ChapterFour/1200~1299/1268.Search-Suggestions-System/index.html index dae9357ec..e10844341 100644 --- a/website/public/zh/ChapterFour/1200~1299/1268.Search-Suggestions-System/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1268.Search-Suggestions-System/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1275.Find-Winner-on-a-Tic-Tac-Toe-Game/index.html b/website/public/zh/ChapterFour/1200~1299/1275.Find-Winner-on-a-Tic-Tac-Toe-Game/index.html index 9d7b89c6c..7647cbb01 100644 --- a/website/public/zh/ChapterFour/1200~1299/1275.Find-Winner-on-a-Tic-Tac-Toe-Game/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1275.Find-Winner-on-a-Tic-Tac-Toe-Game/index.html @@ -12435,7 +12435,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1281.Subtract-the-Product-and-Sum-of-Digits-of-an-Integer/index.html b/website/public/zh/ChapterFour/1200~1299/1281.Subtract-the-Product-and-Sum-of-Digits-of-an-Integer/index.html index 12dcc52ab..65760e2c4 100644 --- a/website/public/zh/ChapterFour/1200~1299/1281.Subtract-the-Product-and-Sum-of-Digits-of-an-Integer/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1281.Subtract-the-Product-and-Sum-of-Digits-of-an-Integer/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1283.Find-the-Smallest-Divisor-Given-a-Threshold/index.html b/website/public/zh/ChapterFour/1200~1299/1283.Find-the-Smallest-Divisor-Given-a-Threshold/index.html index 3f8e8a912..217a26ca8 100644 --- a/website/public/zh/ChapterFour/1200~1299/1283.Find-the-Smallest-Divisor-Given-a-Threshold/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1283.Find-the-Smallest-Divisor-Given-a-Threshold/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1287.Element-Appearing-More-Than-25-In-Sorted-Array/index.html b/website/public/zh/ChapterFour/1200~1299/1287.Element-Appearing-More-Than-25-In-Sorted-Array/index.html index a6fb10ec9..2b2cab765 100644 --- a/website/public/zh/ChapterFour/1200~1299/1287.Element-Appearing-More-Than-25-In-Sorted-Array/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1287.Element-Appearing-More-Than-25-In-Sorted-Array/index.html @@ -12351,7 +12351,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1290.Convert-Binary-Number-in-a-Linked-List-to-Integer/index.html b/website/public/zh/ChapterFour/1200~1299/1290.Convert-Binary-Number-in-a-Linked-List-to-Integer/index.html index 63fa272da..b74d3149c 100644 --- a/website/public/zh/ChapterFour/1200~1299/1290.Convert-Binary-Number-in-a-Linked-List-to-Integer/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1290.Convert-Binary-Number-in-a-Linked-List-to-Integer/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1292.Maximum-Side-Length-of-a-Square-with-Sum-Less-than-or-Equal-to-Threshold/index.html b/website/public/zh/ChapterFour/1200~1299/1292.Maximum-Side-Length-of-a-Square-with-Sum-Less-than-or-Equal-to-Threshold/index.html index 8dcb3fd6f..e381b48f7 100644 --- a/website/public/zh/ChapterFour/1200~1299/1292.Maximum-Side-Length-of-a-Square-with-Sum-Less-than-or-Equal-to-Threshold/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1292.Maximum-Side-Length-of-a-Square-with-Sum-Less-than-or-Equal-to-Threshold/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1293.Shortest-Path-in-a-Grid-with-Obstacles-Elimination/index.html b/website/public/zh/ChapterFour/1200~1299/1293.Shortest-Path-in-a-Grid-with-Obstacles-Elimination/index.html index 6fd0c0743..b8c012740 100644 --- a/website/public/zh/ChapterFour/1200~1299/1293.Shortest-Path-in-a-Grid-with-Obstacles-Elimination/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1293.Shortest-Path-in-a-Grid-with-Obstacles-Elimination/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1295.Find-Numbers-with-Even-Number-of-Digits/index.html b/website/public/zh/ChapterFour/1200~1299/1295.Find-Numbers-with-Even-Number-of-Digits/index.html index ef3ed181d..4be81395d 100644 --- a/website/public/zh/ChapterFour/1200~1299/1295.Find-Numbers-with-Even-Number-of-Digits/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1295.Find-Numbers-with-Even-Number-of-Digits/index.html @@ -12354,7 +12354,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1296.Divide-Array-in-Sets-of-K-Consecutive-Numbers/index.html b/website/public/zh/ChapterFour/1200~1299/1296.Divide-Array-in-Sets-of-K-Consecutive-Numbers/index.html index df515f5fa..e68c2b85e 100644 --- a/website/public/zh/ChapterFour/1200~1299/1296.Divide-Array-in-Sets-of-K-Consecutive-Numbers/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1296.Divide-Array-in-Sets-of-K-Consecutive-Numbers/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/1299.Replace-Elements-with-Greatest-Element-on-Right-Side/index.html b/website/public/zh/ChapterFour/1200~1299/1299.Replace-Elements-with-Greatest-Element-on-Right-Side/index.html index 9a480a061..c5d20a505 100644 --- a/website/public/zh/ChapterFour/1200~1299/1299.Replace-Elements-with-Greatest-Element-on-Right-Side/index.html +++ b/website/public/zh/ChapterFour/1200~1299/1299.Replace-Elements-with-Greatest-Element-on-Right-Side/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1200~1299/index.html b/website/public/zh/ChapterFour/1200~1299/index.html index 1d43209a4..86ea5d21e 100644 --- a/website/public/zh/ChapterFour/1200~1299/index.html +++ b/website/public/zh/ChapterFour/1200~1299/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1300.Sum-of-Mutated-Array-Closest-to-Target/index.html b/website/public/zh/ChapterFour/1300~1399/1300.Sum-of-Mutated-Array-Closest-to-Target/index.html index 8f432001b..7ba3f8ac7 100644 --- a/website/public/zh/ChapterFour/1300~1399/1300.Sum-of-Mutated-Array-Closest-to-Target/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1300.Sum-of-Mutated-Array-Closest-to-Target/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1302.Deepest-Leaves-Sum/index.html b/website/public/zh/ChapterFour/1300~1399/1302.Deepest-Leaves-Sum/index.html index 804378f09..748085cad 100644 --- a/website/public/zh/ChapterFour/1300~1399/1302.Deepest-Leaves-Sum/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1302.Deepest-Leaves-Sum/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1304.Find-N-Unique-Integers-Sum-up-to-Zero/index.html b/website/public/zh/ChapterFour/1300~1399/1304.Find-N-Unique-Integers-Sum-up-to-Zero/index.html index d8302f563..1e4e37411 100644 --- a/website/public/zh/ChapterFour/1300~1399/1304.Find-N-Unique-Integers-Sum-up-to-Zero/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1304.Find-N-Unique-Integers-Sum-up-to-Zero/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1305.All-Elements-in-Two-Binary-Search-Trees/index.html b/website/public/zh/ChapterFour/1300~1399/1305.All-Elements-in-Two-Binary-Search-Trees/index.html index c14f8cd24..27ee11353 100644 --- a/website/public/zh/ChapterFour/1300~1399/1305.All-Elements-in-Two-Binary-Search-Trees/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1305.All-Elements-in-Two-Binary-Search-Trees/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1306.Jump-Game-III/index.html b/website/public/zh/ChapterFour/1300~1399/1306.Jump-Game-III/index.html index d43465ecf..13ae6f9a7 100644 --- a/website/public/zh/ChapterFour/1300~1399/1306.Jump-Game-III/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1306.Jump-Game-III/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1310.XOR-Queries-of-a-Subarray/index.html b/website/public/zh/ChapterFour/1300~1399/1310.XOR-Queries-of-a-Subarray/index.html index 5e099effc..c31702877 100644 --- a/website/public/zh/ChapterFour/1300~1399/1310.XOR-Queries-of-a-Subarray/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1310.XOR-Queries-of-a-Subarray/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1313.Decompress-Run-Length-Encoded-List/index.html b/website/public/zh/ChapterFour/1300~1399/1313.Decompress-Run-Length-Encoded-List/index.html index a5a16644d..845ca5788 100644 --- a/website/public/zh/ChapterFour/1300~1399/1313.Decompress-Run-Length-Encoded-List/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1313.Decompress-Run-Length-Encoded-List/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1317.Convert-Integer-to-the-Sum-of-Two-No-Zero-Integers/index.html b/website/public/zh/ChapterFour/1300~1399/1317.Convert-Integer-to-the-Sum-of-Two-No-Zero-Integers/index.html index f247fa987..72823555c 100644 --- a/website/public/zh/ChapterFour/1300~1399/1317.Convert-Integer-to-the-Sum-of-Two-No-Zero-Integers/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1317.Convert-Integer-to-the-Sum-of-Two-No-Zero-Integers/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1319.Number-of-Operations-to-Make-Network-Connected/index.html b/website/public/zh/ChapterFour/1300~1399/1319.Number-of-Operations-to-Make-Network-Connected/index.html index 0b8855d67..209ca6496 100644 --- a/website/public/zh/ChapterFour/1300~1399/1319.Number-of-Operations-to-Make-Network-Connected/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1319.Number-of-Operations-to-Make-Network-Connected/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1329.Sort-the-Matrix-Diagonally/index.html b/website/public/zh/ChapterFour/1300~1399/1329.Sort-the-Matrix-Diagonally/index.html index 948e7a439..c7b4ae67d 100644 --- a/website/public/zh/ChapterFour/1300~1399/1329.Sort-the-Matrix-Diagonally/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1329.Sort-the-Matrix-Diagonally/index.html @@ -12352,7 +12352,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1332.Remove-Palindromic-Subsequences/index.html b/website/public/zh/ChapterFour/1300~1399/1332.Remove-Palindromic-Subsequences/index.html index 0cbe0cfcb..f9edae9ac 100644 --- a/website/public/zh/ChapterFour/1300~1399/1332.Remove-Palindromic-Subsequences/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1332.Remove-Palindromic-Subsequences/index.html @@ -12364,7 +12364,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1337.The-K-Weakest-Rows-in-a-Matrix/index.html b/website/public/zh/ChapterFour/1300~1399/1337.The-K-Weakest-Rows-in-a-Matrix/index.html index 9bb5dad04..5ba022fad 100644 --- a/website/public/zh/ChapterFour/1300~1399/1337.The-K-Weakest-Rows-in-a-Matrix/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1337.The-K-Weakest-Rows-in-a-Matrix/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1353.Maximum-Number-of-Events-That-Can-Be-Attended/index.html b/website/public/zh/ChapterFour/1300~1399/1353.Maximum-Number-of-Events-That-Can-Be-Attended/index.html index 363276ce8..68f4f5424 100644 --- a/website/public/zh/ChapterFour/1300~1399/1353.Maximum-Number-of-Events-That-Can-Be-Attended/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1353.Maximum-Number-of-Events-That-Can-Be-Attended/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1380.Lucky-Numbers-in-a-Matrix/index.html b/website/public/zh/ChapterFour/1300~1399/1380.Lucky-Numbers-in-a-Matrix/index.html index a50514496..aae94b655 100644 --- a/website/public/zh/ChapterFour/1300~1399/1380.Lucky-Numbers-in-a-Matrix/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1380.Lucky-Numbers-in-a-Matrix/index.html @@ -12377,7 +12377,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1383.Maximum-Performance-of-a-Team/index.html b/website/public/zh/ChapterFour/1300~1399/1383.Maximum-Performance-of-a-Team/index.html index ccf37fb9d..3ddebc207 100644 --- a/website/public/zh/ChapterFour/1300~1399/1383.Maximum-Performance-of-a-Team/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1383.Maximum-Performance-of-a-Team/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1385.Find-the-Distance-Value-Between-Two-Arrays/index.html b/website/public/zh/ChapterFour/1300~1399/1385.Find-the-Distance-Value-Between-Two-Arrays/index.html index 25065c642..74d3765ff 100644 --- a/website/public/zh/ChapterFour/1300~1399/1385.Find-the-Distance-Value-Between-Two-Arrays/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1385.Find-the-Distance-Value-Between-Two-Arrays/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1389.Create-Target-Array-in-the-Given-Order/index.html b/website/public/zh/ChapterFour/1300~1399/1389.Create-Target-Array-in-the-Given-Order/index.html index 98fa89bfa..89c8eb68c 100644 --- a/website/public/zh/ChapterFour/1300~1399/1389.Create-Target-Array-in-the-Given-Order/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1389.Create-Target-Array-in-the-Given-Order/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/1396.Design-Underground-System/index.html b/website/public/zh/ChapterFour/1300~1399/1396.Design-Underground-System/index.html index e8a8725ed..1fb626ff4 100644 --- a/website/public/zh/ChapterFour/1300~1399/1396.Design-Underground-System/index.html +++ b/website/public/zh/ChapterFour/1300~1399/1396.Design-Underground-System/index.html @@ -12465,7 +12465,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1300~1399/index.html b/website/public/zh/ChapterFour/1300~1399/index.html index 5eea21ac2..ff9ddc5cf 100644 --- a/website/public/zh/ChapterFour/1300~1399/index.html +++ b/website/public/zh/ChapterFour/1300~1399/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1423.Maximum-Points-You-Can-Obtain-from-Cards/index.html b/website/public/zh/ChapterFour/1400~1499/1423.Maximum-Points-You-Can-Obtain-from-Cards/index.html index 15b6a3a46..7346d6277 100644 --- a/website/public/zh/ChapterFour/1400~1499/1423.Maximum-Points-You-Can-Obtain-from-Cards/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1423.Maximum-Points-You-Can-Obtain-from-Cards/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1437.Check-If-All-1s-Are-at-Least-Length-K-Places-Away/index.html b/website/public/zh/ChapterFour/1400~1499/1437.Check-If-All-1s-Are-at-Least-Length-K-Places-Away/index.html index 7b208ff51..f8a7de0a4 100644 --- a/website/public/zh/ChapterFour/1400~1499/1437.Check-If-All-1s-Are-at-Least-Length-K-Places-Away/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1437.Check-If-All-1s-Are-at-Least-Length-K-Places-Away/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1438.Longest-Continuous-Subarray-With-Absolute-Diff-Less-Than-or-Equal-to-Limit/index.html b/website/public/zh/ChapterFour/1400~1499/1438.Longest-Continuous-Subarray-With-Absolute-Diff-Less-Than-or-Equal-to-Limit/index.html index 2b4a3cf6c..ef5e645e4 100644 --- a/website/public/zh/ChapterFour/1400~1499/1438.Longest-Continuous-Subarray-With-Absolute-Diff-Less-Than-or-Equal-to-Limit/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1438.Longest-Continuous-Subarray-With-Absolute-Diff-Less-Than-or-Equal-to-Limit/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1439.Find-the-Kth-Smallest-Sum-of-a-Matrix-With-Sorted-Rows/index.html b/website/public/zh/ChapterFour/1400~1499/1439.Find-the-Kth-Smallest-Sum-of-a-Matrix-With-Sorted-Rows/index.html index a9f034556..9b310d869 100644 --- a/website/public/zh/ChapterFour/1400~1499/1439.Find-the-Kth-Smallest-Sum-of-a-Matrix-With-Sorted-Rows/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1439.Find-the-Kth-Smallest-Sum-of-a-Matrix-With-Sorted-Rows/index.html @@ -12431,7 +12431,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR/index.html b/website/public/zh/ChapterFour/1400~1499/1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR/index.html index 48898b01b..0ac6e89e1 100644 --- a/website/public/zh/ChapterFour/1400~1499/1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1446.Consecutive-Characters/index.html b/website/public/zh/ChapterFour/1400~1499/1446.Consecutive-Characters/index.html index 8b82019ae..57f074210 100644 --- a/website/public/zh/ChapterFour/1400~1499/1446.Consecutive-Characters/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1446.Consecutive-Characters/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1455.Check-If-a-Word-Occurs-As-a-Prefix-of-Any-Word-in-a-Sentence/index.html b/website/public/zh/ChapterFour/1400~1499/1455.Check-If-a-Word-Occurs-As-a-Prefix-of-Any-Word-in-a-Sentence/index.html index 7ef34a77e..bab641cec 100644 --- a/website/public/zh/ChapterFour/1400~1499/1455.Check-If-a-Word-Occurs-As-a-Prefix-of-Any-Word-in-a-Sentence/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1455.Check-If-a-Word-Occurs-As-a-Prefix-of-Any-Word-in-a-Sentence/index.html @@ -12378,7 +12378,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K/index.html b/website/public/zh/ChapterFour/1400~1499/1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K/index.html index b46972f0f..60d1f0f0f 100644 --- a/website/public/zh/ChapterFour/1400~1499/1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1463.Cherry-Pickup-II/index.html b/website/public/zh/ChapterFour/1400~1499/1463.Cherry-Pickup-II/index.html index eaff25017..b04449324 100644 --- a/website/public/zh/ChapterFour/1400~1499/1463.Cherry-Pickup-II/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1463.Cherry-Pickup-II/index.html @@ -12445,7 +12445,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1464.Maximum-Product-of-Two-Elements-in-an-Array/index.html b/website/public/zh/ChapterFour/1400~1499/1464.Maximum-Product-of-Two-Elements-in-an-Array/index.html index 7338bd652..f69993878 100644 --- a/website/public/zh/ChapterFour/1400~1499/1464.Maximum-Product-of-Two-Elements-in-an-Array/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1464.Maximum-Product-of-Two-Elements-in-an-Array/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1465.Maximum-Area-of-a-Piece-of-Cake-After-Horizontal-and-Vertical-Cuts/index.html b/website/public/zh/ChapterFour/1400~1499/1465.Maximum-Area-of-a-Piece-of-Cake-After-Horizontal-and-Vertical-Cuts/index.html index 4e4a20f87..f7e4d5d91 100644 --- a/website/public/zh/ChapterFour/1400~1499/1465.Maximum-Area-of-a-Piece-of-Cake-After-Horizontal-and-Vertical-Cuts/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1465.Maximum-Area-of-a-Piece-of-Cake-After-Horizontal-and-Vertical-Cuts/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1470.Shuffle-the-Array/index.html b/website/public/zh/ChapterFour/1400~1499/1470.Shuffle-the-Array/index.html index 7083b736e..c99b6a516 100644 --- a/website/public/zh/ChapterFour/1400~1499/1470.Shuffle-the-Array/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1470.Shuffle-the-Array/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1480.Running-Sum-of-1d-Array/index.html b/website/public/zh/ChapterFour/1400~1499/1480.Running-Sum-of-1d-Array/index.html index cd4886ce9..21624c748 100644 --- a/website/public/zh/ChapterFour/1400~1499/1480.Running-Sum-of-1d-Array/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1480.Running-Sum-of-1d-Array/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1482.Minimum-Number-of-Days-to-Make-m-Bouquets/index.html b/website/public/zh/ChapterFour/1400~1499/1482.Minimum-Number-of-Days-to-Make-m-Bouquets/index.html index 2da8dfd26..918f56467 100644 --- a/website/public/zh/ChapterFour/1400~1499/1482.Minimum-Number-of-Days-to-Make-m-Bouquets/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1482.Minimum-Number-of-Days-to-Make-m-Bouquets/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/1486.XOR-Operation-in-an-Array/index.html b/website/public/zh/ChapterFour/1400~1499/1486.XOR-Operation-in-an-Array/index.html index 23084022e..6ffb14b8d 100644 --- a/website/public/zh/ChapterFour/1400~1499/1486.XOR-Operation-in-an-Array/index.html +++ b/website/public/zh/ChapterFour/1400~1499/1486.XOR-Operation-in-an-Array/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1400~1499/index.html b/website/public/zh/ChapterFour/1400~1499/index.html index c65786137..0d25352fe 100644 --- a/website/public/zh/ChapterFour/1400~1499/index.html +++ b/website/public/zh/ChapterFour/1400~1499/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1500~1599/1512.Number-of-Good-Pairs/index.html b/website/public/zh/ChapterFour/1500~1599/1512.Number-of-Good-Pairs/index.html index d18acf608..d823f139e 100644 --- a/website/public/zh/ChapterFour/1500~1599/1512.Number-of-Good-Pairs/index.html +++ b/website/public/zh/ChapterFour/1500~1599/1512.Number-of-Good-Pairs/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1500~1599/1518.Water-Bottles/index.html b/website/public/zh/ChapterFour/1500~1599/1518.Water-Bottles/index.html index c4d37931a..28f8cd5d7 100644 --- a/website/public/zh/ChapterFour/1500~1599/1518.Water-Bottles/index.html +++ b/website/public/zh/ChapterFour/1500~1599/1518.Water-Bottles/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1500~1599/1539.Kth-Missing-Positive-Number/index.html b/website/public/zh/ChapterFour/1500~1599/1539.Kth-Missing-Positive-Number/index.html index 68c137cfc..027c96d6e 100644 --- a/website/public/zh/ChapterFour/1500~1599/1539.Kth-Missing-Positive-Number/index.html +++ b/website/public/zh/ChapterFour/1500~1599/1539.Kth-Missing-Positive-Number/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1500~1599/1551.Minimum-Operations-to-Make-Array-Equal/index.html b/website/public/zh/ChapterFour/1500~1599/1551.Minimum-Operations-to-Make-Array-Equal/index.html index 06961e4f9..d5fcc0594 100644 --- a/website/public/zh/ChapterFour/1500~1599/1551.Minimum-Operations-to-Make-Array-Equal/index.html +++ b/website/public/zh/ChapterFour/1500~1599/1551.Minimum-Operations-to-Make-Array-Equal/index.html @@ -12359,7 +12359,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1500~1599/1572.Matrix-Diagonal-Sum/index.html b/website/public/zh/ChapterFour/1500~1599/1572.Matrix-Diagonal-Sum/index.html index 68668e314..b376053ce 100644 --- a/website/public/zh/ChapterFour/1500~1599/1572.Matrix-Diagonal-Sum/index.html +++ b/website/public/zh/ChapterFour/1500~1599/1572.Matrix-Diagonal-Sum/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1500~1599/1573.Number-of-Ways-to-Split-a-String/index.html b/website/public/zh/ChapterFour/1500~1599/1573.Number-of-Ways-to-Split-a-String/index.html index e6a1f7a1a..c11d8ddeb 100644 --- a/website/public/zh/ChapterFour/1500~1599/1573.Number-of-Ways-to-Split-a-String/index.html +++ b/website/public/zh/ChapterFour/1500~1599/1573.Number-of-Ways-to-Split-a-String/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1500~1599/1576.Replace-All-s-to-Avoid-Consecutive-Repeating-Characters/index.html b/website/public/zh/ChapterFour/1500~1599/1576.Replace-All-s-to-Avoid-Consecutive-Repeating-Characters/index.html index 4b9c5b8d3..b0be2c5f7 100644 --- a/website/public/zh/ChapterFour/1500~1599/1576.Replace-All-s-to-Avoid-Consecutive-Repeating-Characters/index.html +++ b/website/public/zh/ChapterFour/1500~1599/1576.Replace-All-s-to-Avoid-Consecutive-Repeating-Characters/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1500~1599/1579.Remove-Max-Number-of-Edges-to-Keep-Graph-Fully-Traversable/index.html b/website/public/zh/ChapterFour/1500~1599/1579.Remove-Max-Number-of-Edges-to-Keep-Graph-Fully-Traversable/index.html index 779093943..0f5a6b8a0 100644 --- a/website/public/zh/ChapterFour/1500~1599/1579.Remove-Max-Number-of-Edges-to-Keep-Graph-Fully-Traversable/index.html +++ b/website/public/zh/ChapterFour/1500~1599/1579.Remove-Max-Number-of-Edges-to-Keep-Graph-Fully-Traversable/index.html @@ -12390,7 +12390,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1500~1599/index.html b/website/public/zh/ChapterFour/1500~1599/index.html index 1dda59c66..a26e3da7a 100644 --- a/website/public/zh/ChapterFour/1500~1599/index.html +++ b/website/public/zh/ChapterFour/1500~1599/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1600.Throne-Inheritance/index.html b/website/public/zh/ChapterFour/1600~1699/1600.Throne-Inheritance/index.html index ca02cb30f..54aca574b 100644 --- a/website/public/zh/ChapterFour/1600~1699/1600.Throne-Inheritance/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1600.Throne-Inheritance/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1603.Design-Parking-System/index.html b/website/public/zh/ChapterFour/1600~1699/1603.Design-Parking-System/index.html index 42362a772..56b19f3c0 100644 --- a/website/public/zh/ChapterFour/1600~1699/1603.Design-Parking-System/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1603.Design-Parking-System/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1608.Special-Array-With-X-Elements-Greater-Than-or-Equal-X/index.html b/website/public/zh/ChapterFour/1600~1699/1608.Special-Array-With-X-Elements-Greater-Than-or-Equal-X/index.html index 636035857..d11dd400e 100644 --- a/website/public/zh/ChapterFour/1600~1699/1608.Special-Array-With-X-Elements-Greater-Than-or-Equal-X/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1608.Special-Array-With-X-Elements-Greater-Than-or-Equal-X/index.html @@ -12365,7 +12365,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1609.Even-Odd-Tree/index.html b/website/public/zh/ChapterFour/1600~1699/1609.Even-Odd-Tree/index.html index 8dd36fc09..b0abf5341 100644 --- a/website/public/zh/ChapterFour/1600~1699/1609.Even-Odd-Tree/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1609.Even-Odd-Tree/index.html @@ -12446,7 +12446,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1614.Maximum-Nesting-Depth-of-the-Parentheses/index.html b/website/public/zh/ChapterFour/1600~1699/1614.Maximum-Nesting-Depth-of-the-Parentheses/index.html index 5c2ce585c..07db3c378 100644 --- a/website/public/zh/ChapterFour/1600~1699/1614.Maximum-Nesting-Depth-of-the-Parentheses/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1614.Maximum-Nesting-Depth-of-the-Parentheses/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1619.Mean-of-Array-After-Removing-Some-Elements/index.html b/website/public/zh/ChapterFour/1600~1699/1619.Mean-of-Array-After-Removing-Some-Elements/index.html index 624a6f62c..4b4d01415 100644 --- a/website/public/zh/ChapterFour/1600~1699/1619.Mean-of-Array-After-Removing-Some-Elements/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1619.Mean-of-Array-After-Removing-Some-Elements/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1624.Largest-Substring-Between-Two-Equal-Characters/index.html b/website/public/zh/ChapterFour/1600~1699/1624.Largest-Substring-Between-Two-Equal-Characters/index.html index 776a9e226..3bca8dd28 100644 --- a/website/public/zh/ChapterFour/1600~1699/1624.Largest-Substring-Between-Two-Equal-Characters/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1624.Largest-Substring-Between-Two-Equal-Characters/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1629.Slowest-Key/index.html b/website/public/zh/ChapterFour/1600~1699/1629.Slowest-Key/index.html index bd368a8df..ba49b2466 100644 --- a/website/public/zh/ChapterFour/1600~1699/1629.Slowest-Key/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1629.Slowest-Key/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1631.Path-With-Minimum-Effort/index.html b/website/public/zh/ChapterFour/1600~1699/1631.Path-With-Minimum-Effort/index.html index 722d386e8..282026707 100644 --- a/website/public/zh/ChapterFour/1600~1699/1631.Path-With-Minimum-Effort/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1631.Path-With-Minimum-Effort/index.html @@ -12455,7 +12455,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1636.Sort-Array-by-Increasing-Frequency/index.html b/website/public/zh/ChapterFour/1600~1699/1636.Sort-Array-by-Increasing-Frequency/index.html index eb0c79682..077825128 100644 --- a/website/public/zh/ChapterFour/1600~1699/1636.Sort-Array-by-Increasing-Frequency/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1636.Sort-Array-by-Increasing-Frequency/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1640.Check-Array-Formation-Through-Concatenation/index.html b/website/public/zh/ChapterFour/1600~1699/1640.Check-Array-Formation-Through-Concatenation/index.html index 5b12694c1..640c185f9 100644 --- a/website/public/zh/ChapterFour/1600~1699/1640.Check-Array-Formation-Through-Concatenation/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1640.Check-Array-Formation-Through-Concatenation/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1641.Count-Sorted-Vowel-Strings/index.html b/website/public/zh/ChapterFour/1600~1699/1641.Count-Sorted-Vowel-Strings/index.html index 14c36683e..2f7614959 100644 --- a/website/public/zh/ChapterFour/1600~1699/1641.Count-Sorted-Vowel-Strings/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1641.Count-Sorted-Vowel-Strings/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1642.Furthest-Building-You-Can-Reach/index.html b/website/public/zh/ChapterFour/1600~1699/1642.Furthest-Building-You-Can-Reach/index.html index bf5513125..1e72938d1 100644 --- a/website/public/zh/ChapterFour/1600~1699/1642.Furthest-Building-You-Can-Reach/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1642.Furthest-Building-You-Can-Reach/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1646.Get-Maximum-in-Generated-Array/index.html b/website/public/zh/ChapterFour/1600~1699/1646.Get-Maximum-in-Generated-Array/index.html index 5d9aedeb2..7d2d32f14 100644 --- a/website/public/zh/ChapterFour/1600~1699/1646.Get-Maximum-in-Generated-Array/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1646.Get-Maximum-in-Generated-Array/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1647.Minimum-Deletions-to-Make-Character-Frequencies-Unique/index.html b/website/public/zh/ChapterFour/1600~1699/1647.Minimum-Deletions-to-Make-Character-Frequencies-Unique/index.html index d3e1824a6..8dcc8b8e0 100644 --- a/website/public/zh/ChapterFour/1600~1699/1647.Minimum-Deletions-to-Make-Character-Frequencies-Unique/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1647.Minimum-Deletions-to-Make-Character-Frequencies-Unique/index.html @@ -12375,7 +12375,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1648.Sell-Diminishing-Valued-Colored-Balls/index.html b/website/public/zh/ChapterFour/1600~1699/1648.Sell-Diminishing-Valued-Colored-Balls/index.html index 2c462f9aa..5bc572f09 100644 --- a/website/public/zh/ChapterFour/1600~1699/1648.Sell-Diminishing-Valued-Colored-Balls/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1648.Sell-Diminishing-Valued-Colored-Balls/index.html @@ -12426,7 +12426,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1649.Create-Sorted-Array-through-Instructions/index.html b/website/public/zh/ChapterFour/1600~1699/1649.Create-Sorted-Array-through-Instructions/index.html index 9e87663cb..d041e7208 100644 --- a/website/public/zh/ChapterFour/1600~1699/1649.Create-Sorted-Array-through-Instructions/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1649.Create-Sorted-Array-through-Instructions/index.html @@ -12437,7 +12437,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1652.Defuse-the-Bomb/index.html b/website/public/zh/ChapterFour/1600~1699/1652.Defuse-the-Bomb/index.html index 01e95b07c..2e8fdbd29 100644 --- a/website/public/zh/ChapterFour/1600~1699/1652.Defuse-the-Bomb/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1652.Defuse-the-Bomb/index.html @@ -12412,7 +12412,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1653.Minimum-Deletions-to-Make-String-Balanced/index.html b/website/public/zh/ChapterFour/1600~1699/1653.Minimum-Deletions-to-Make-String-Balanced/index.html index 722102b6f..e6bccf641 100644 --- a/website/public/zh/ChapterFour/1600~1699/1653.Minimum-Deletions-to-Make-String-Balanced/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1653.Minimum-Deletions-to-Make-String-Balanced/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1654.Minimum-Jumps-to-Reach-Home/index.html b/website/public/zh/ChapterFour/1600~1699/1654.Minimum-Jumps-to-Reach-Home/index.html index 1658e6eca..3e715b6c7 100644 --- a/website/public/zh/ChapterFour/1600~1699/1654.Minimum-Jumps-to-Reach-Home/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1654.Minimum-Jumps-to-Reach-Home/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1655.Distribute-Repeating-Integers/index.html b/website/public/zh/ChapterFour/1600~1699/1655.Distribute-Repeating-Integers/index.html index 91a4849ee..961cdb873 100644 --- a/website/public/zh/ChapterFour/1600~1699/1655.Distribute-Repeating-Integers/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1655.Distribute-Repeating-Integers/index.html @@ -12392,7 +12392,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1656.Design-an-Ordered-Stream/index.html b/website/public/zh/ChapterFour/1600~1699/1656.Design-an-Ordered-Stream/index.html index b4cccbfab..223af21f3 100644 --- a/website/public/zh/ChapterFour/1600~1699/1656.Design-an-Ordered-Stream/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1656.Design-an-Ordered-Stream/index.html @@ -12401,7 +12401,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1657.Determine-if-Two-Strings-Are-Close/index.html b/website/public/zh/ChapterFour/1600~1699/1657.Determine-if-Two-Strings-Are-Close/index.html index 51ad62348..f8bc817c4 100644 --- a/website/public/zh/ChapterFour/1600~1699/1657.Determine-if-Two-Strings-Are-Close/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1657.Determine-if-Two-Strings-Are-Close/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1658.Minimum-Operations-to-Reduce-X-to-Zero/index.html b/website/public/zh/ChapterFour/1600~1699/1658.Minimum-Operations-to-Reduce-X-to-Zero/index.html index 1d8b7d62c..10aad5636 100644 --- a/website/public/zh/ChapterFour/1600~1699/1658.Minimum-Operations-to-Reduce-X-to-Zero/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1658.Minimum-Operations-to-Reduce-X-to-Zero/index.html @@ -12383,7 +12383,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1659.Maximize-Grid-Happiness/index.html b/website/public/zh/ChapterFour/1600~1699/1659.Maximize-Grid-Happiness/index.html index 4d31e0b6d..6af70ea8d 100644 --- a/website/public/zh/ChapterFour/1600~1699/1659.Maximize-Grid-Happiness/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1659.Maximize-Grid-Happiness/index.html @@ -12471,7 +12471,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1662.Check-If-Two-String-Arrays-are-Equivalent/index.html b/website/public/zh/ChapterFour/1600~1699/1662.Check-If-Two-String-Arrays-are-Equivalent/index.html index e76bdd4cf..1d96db190 100644 --- a/website/public/zh/ChapterFour/1600~1699/1662.Check-If-Two-String-Arrays-are-Equivalent/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1662.Check-If-Two-String-Arrays-are-Equivalent/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1663.Smallest-String-With-A-Given-Numeric-Value/index.html b/website/public/zh/ChapterFour/1600~1699/1663.Smallest-String-With-A-Given-Numeric-Value/index.html index 972e98f98..d88be7fba 100644 --- a/website/public/zh/ChapterFour/1600~1699/1663.Smallest-String-With-A-Given-Numeric-Value/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1663.Smallest-String-With-A-Given-Numeric-Value/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1664.Ways-to-Make-a-Fair-Array/index.html b/website/public/zh/ChapterFour/1600~1699/1664.Ways-to-Make-a-Fair-Array/index.html index 984855325..22d8d714b 100644 --- a/website/public/zh/ChapterFour/1600~1699/1664.Ways-to-Make-a-Fair-Array/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1664.Ways-to-Make-a-Fair-Array/index.html @@ -12403,7 +12403,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1665.Minimum-Initial-Energy-to-Finish-Tasks/index.html b/website/public/zh/ChapterFour/1600~1699/1665.Minimum-Initial-Energy-to-Finish-Tasks/index.html index d92e2a638..c0cd16ed7 100644 --- a/website/public/zh/ChapterFour/1600~1699/1665.Minimum-Initial-Energy-to-Finish-Tasks/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1665.Minimum-Initial-Energy-to-Finish-Tasks/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1668.Maximum-Repeating-Substring/index.html b/website/public/zh/ChapterFour/1600~1699/1668.Maximum-Repeating-Substring/index.html index 6777beff7..74a049f05 100644 --- a/website/public/zh/ChapterFour/1600~1699/1668.Maximum-Repeating-Substring/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1668.Maximum-Repeating-Substring/index.html @@ -12356,7 +12356,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1669.Merge-In-Between-Linked-Lists/index.html b/website/public/zh/ChapterFour/1600~1699/1669.Merge-In-Between-Linked-Lists/index.html index 08de13236..036c4d5ca 100644 --- a/website/public/zh/ChapterFour/1600~1699/1669.Merge-In-Between-Linked-Lists/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1669.Merge-In-Between-Linked-Lists/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1670.Design-Front-Middle-Back-Queue/index.html b/website/public/zh/ChapterFour/1600~1699/1670.Design-Front-Middle-Back-Queue/index.html index 466ecf555..fcddf53a7 100644 --- a/website/public/zh/ChapterFour/1600~1699/1670.Design-Front-Middle-Back-Queue/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1670.Design-Front-Middle-Back-Queue/index.html @@ -12470,7 +12470,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1672.Richest-Customer-Wealth/index.html b/website/public/zh/ChapterFour/1600~1699/1672.Richest-Customer-Wealth/index.html index 2bc5739b0..ef148d4a0 100644 --- a/website/public/zh/ChapterFour/1600~1699/1672.Richest-Customer-Wealth/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1672.Richest-Customer-Wealth/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1673.Find-the-Most-Competitive-Subsequence/index.html b/website/public/zh/ChapterFour/1600~1699/1673.Find-the-Most-Competitive-Subsequence/index.html index c101a319d..867f9fb79 100644 --- a/website/public/zh/ChapterFour/1600~1699/1673.Find-the-Most-Competitive-Subsequence/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1673.Find-the-Most-Competitive-Subsequence/index.html @@ -12353,7 +12353,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1674.Minimum-Moves-to-Make-Array-Complementary/index.html b/website/public/zh/ChapterFour/1600~1699/1674.Minimum-Moves-to-Make-Array-Complementary/index.html index fdd4f330e..35adb700b 100644 --- a/website/public/zh/ChapterFour/1600~1699/1674.Minimum-Moves-to-Make-Array-Complementary/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1674.Minimum-Moves-to-Make-Array-Complementary/index.html @@ -12382,7 +12382,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1675.Minimize-Deviation-in-Array/index.html b/website/public/zh/ChapterFour/1600~1699/1675.Minimize-Deviation-in-Array/index.html index 7a7688a35..1a2bfa00a 100644 --- a/website/public/zh/ChapterFour/1600~1699/1675.Minimize-Deviation-in-Array/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1675.Minimize-Deviation-in-Array/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1678.Goal-Parser-Interpretation/index.html b/website/public/zh/ChapterFour/1600~1699/1678.Goal-Parser-Interpretation/index.html index b5ec7534b..208d3d989 100644 --- a/website/public/zh/ChapterFour/1600~1699/1678.Goal-Parser-Interpretation/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1678.Goal-Parser-Interpretation/index.html @@ -12361,7 +12361,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1679.Max-Number-of-K-Sum-Pairs/index.html b/website/public/zh/ChapterFour/1600~1699/1679.Max-Number-of-K-Sum-Pairs/index.html index e9ac9225a..d7c92350d 100644 --- a/website/public/zh/ChapterFour/1600~1699/1679.Max-Number-of-K-Sum-Pairs/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1679.Max-Number-of-K-Sum-Pairs/index.html @@ -12394,7 +12394,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1680.Concatenation-of-Consecutive-Binary-Numbers/index.html b/website/public/zh/ChapterFour/1600~1699/1680.Concatenation-of-Consecutive-Binary-Numbers/index.html index 78adc7b53..7309f97bd 100644 --- a/website/public/zh/ChapterFour/1600~1699/1680.Concatenation-of-Consecutive-Binary-Numbers/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1680.Concatenation-of-Consecutive-Binary-Numbers/index.html @@ -12387,7 +12387,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1681.Minimum-Incompatibility/index.html b/website/public/zh/ChapterFour/1600~1699/1681.Minimum-Incompatibility/index.html index b0dce18dd..8df45861a 100644 --- a/website/public/zh/ChapterFour/1600~1699/1681.Minimum-Incompatibility/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1681.Minimum-Incompatibility/index.html @@ -12408,7 +12408,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1684.Count-the-Number-of-Consistent-Strings/index.html b/website/public/zh/ChapterFour/1600~1699/1684.Count-the-Number-of-Consistent-Strings/index.html index 02d7e55f8..407f0e627 100644 --- a/website/public/zh/ChapterFour/1600~1699/1684.Count-the-Number-of-Consistent-Strings/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1684.Count-the-Number-of-Consistent-Strings/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1685.Sum-of-Absolute-Differences-in-a-Sorted-Array/index.html b/website/public/zh/ChapterFour/1600~1699/1685.Sum-of-Absolute-Differences-in-a-Sorted-Array/index.html index c596dad7c..0b5b3571d 100644 --- a/website/public/zh/ChapterFour/1600~1699/1685.Sum-of-Absolute-Differences-in-a-Sorted-Array/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1685.Sum-of-Absolute-Differences-in-a-Sorted-Array/index.html @@ -12380,7 +12380,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1688.Count-of-Matches-in-Tournament/index.html b/website/public/zh/ChapterFour/1600~1699/1688.Count-of-Matches-in-Tournament/index.html index 8dffa083d..da5595ba5 100644 --- a/website/public/zh/ChapterFour/1600~1699/1688.Count-of-Matches-in-Tournament/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1688.Count-of-Matches-in-Tournament/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1689.Partitioning-Into-Minimum-Number-Of-Deci-Binary-Numbers/index.html b/website/public/zh/ChapterFour/1600~1699/1689.Partitioning-Into-Minimum-Number-Of-Deci-Binary-Numbers/index.html index 4335f7aa3..6f9a23feb 100644 --- a/website/public/zh/ChapterFour/1600~1699/1689.Partitioning-Into-Minimum-Number-Of-Deci-Binary-Numbers/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1689.Partitioning-Into-Minimum-Number-Of-Deci-Binary-Numbers/index.html @@ -12348,7 +12348,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1690.Stone-Game-VII/index.html b/website/public/zh/ChapterFour/1600~1699/1690.Stone-Game-VII/index.html index 870ea71ce..52384989a 100644 --- a/website/public/zh/ChapterFour/1600~1699/1690.Stone-Game-VII/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1690.Stone-Game-VII/index.html @@ -12420,7 +12420,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1691.Maximum-Height-by-Stacking-Cuboids/index.html b/website/public/zh/ChapterFour/1600~1699/1691.Maximum-Height-by-Stacking-Cuboids/index.html index e2220bf52..1123e904a 100644 --- a/website/public/zh/ChapterFour/1600~1699/1691.Maximum-Height-by-Stacking-Cuboids/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1691.Maximum-Height-by-Stacking-Cuboids/index.html @@ -12393,7 +12393,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1694.Reformat-Phone-Number/index.html b/website/public/zh/ChapterFour/1600~1699/1694.Reformat-Phone-Number/index.html index ad51a7804..27b53566f 100644 --- a/website/public/zh/ChapterFour/1600~1699/1694.Reformat-Phone-Number/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1694.Reformat-Phone-Number/index.html @@ -12415,7 +12415,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1695.Maximum-Erasure-Value/index.html b/website/public/zh/ChapterFour/1600~1699/1695.Maximum-Erasure-Value/index.html index f974539d1..8e93720a6 100644 --- a/website/public/zh/ChapterFour/1600~1699/1695.Maximum-Erasure-Value/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1695.Maximum-Erasure-Value/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/1696.Jump-Game-VI/index.html b/website/public/zh/ChapterFour/1600~1699/1696.Jump-Game-VI/index.html index 065de22bf..446c51184 100644 --- a/website/public/zh/ChapterFour/1600~1699/1696.Jump-Game-VI/index.html +++ b/website/public/zh/ChapterFour/1600~1699/1696.Jump-Game-VI/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1600~1699/index.html b/website/public/zh/ChapterFour/1600~1699/index.html index 69a8c1632..88ab874f5 100644 --- a/website/public/zh/ChapterFour/1600~1699/index.html +++ b/website/public/zh/ChapterFour/1600~1699/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1700.Number-of-Students-Unable-to-Eat-Lunch/index.html b/website/public/zh/ChapterFour/1700~1799/1700.Number-of-Students-Unable-to-Eat-Lunch/index.html index 66e6e9f98..ad226c7dc 100644 --- a/website/public/zh/ChapterFour/1700~1799/1700.Number-of-Students-Unable-to-Eat-Lunch/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1700.Number-of-Students-Unable-to-Eat-Lunch/index.html @@ -12369,7 +12369,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1704.Determine-if-String-Halves-Are-Alike/index.html b/website/public/zh/ChapterFour/1700~1799/1704.Determine-if-String-Halves-Are-Alike/index.html index b2dff202c..dcf9f8694 100644 --- a/website/public/zh/ChapterFour/1700~1799/1704.Determine-if-String-Halves-Are-Alike/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1704.Determine-if-String-Halves-Are-Alike/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1705.Maximum-Number-of-Eaten-Apples/index.html b/website/public/zh/ChapterFour/1700~1799/1705.Maximum-Number-of-Eaten-Apples/index.html index 857340516..57651f825 100644 --- a/website/public/zh/ChapterFour/1700~1799/1705.Maximum-Number-of-Eaten-Apples/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1705.Maximum-Number-of-Eaten-Apples/index.html @@ -12416,7 +12416,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1710.Maximum-Units-on-a-Truck/index.html b/website/public/zh/ChapterFour/1700~1799/1710.Maximum-Units-on-a-Truck/index.html index c5285f479..c4ebd5c6e 100644 --- a/website/public/zh/ChapterFour/1700~1799/1710.Maximum-Units-on-a-Truck/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1710.Maximum-Units-on-a-Truck/index.html @@ -12368,7 +12368,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1716.Calculate-Money-in-Leetcode-Bank/index.html b/website/public/zh/ChapterFour/1700~1799/1716.Calculate-Money-in-Leetcode-Bank/index.html index 7e57ada9d..22b68a45e 100644 --- a/website/public/zh/ChapterFour/1700~1799/1716.Calculate-Money-in-Leetcode-Bank/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1716.Calculate-Money-in-Leetcode-Bank/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1720.Decode-XORed-Array/index.html b/website/public/zh/ChapterFour/1700~1799/1720.Decode-XORed-Array/index.html index e35d20731..90666ab68 100644 --- a/website/public/zh/ChapterFour/1700~1799/1720.Decode-XORed-Array/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1720.Decode-XORed-Array/index.html @@ -12350,7 +12350,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1721.Swapping-Nodes-in-a-Linked-List/index.html b/website/public/zh/ChapterFour/1700~1799/1721.Swapping-Nodes-in-a-Linked-List/index.html index 7c60f9c4d..ec9ff4f57 100644 --- a/website/public/zh/ChapterFour/1700~1799/1721.Swapping-Nodes-in-a-Linked-List/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1721.Swapping-Nodes-in-a-Linked-List/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1725.Number-Of-Rectangles-That-Can-Form-The-Largest-Square/index.html b/website/public/zh/ChapterFour/1700~1799/1725.Number-Of-Rectangles-That-Can-Form-The-Largest-Square/index.html index 66a865ab9..d8cc9a0c1 100644 --- a/website/public/zh/ChapterFour/1700~1799/1725.Number-Of-Rectangles-That-Can-Form-The-Largest-Square/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1725.Number-Of-Rectangles-That-Can-Form-The-Largest-Square/index.html @@ -12357,7 +12357,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1732.Find-the-Highest-Altitude/index.html b/website/public/zh/ChapterFour/1700~1799/1732.Find-the-Highest-Altitude/index.html index d952ce9f9..372c3ef02 100644 --- a/website/public/zh/ChapterFour/1700~1799/1732.Find-the-Highest-Altitude/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1732.Find-the-Highest-Altitude/index.html @@ -12346,7 +12346,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1734.Decode-XORed-Permutation/index.html b/website/public/zh/ChapterFour/1700~1799/1734.Decode-XORed-Permutation/index.html index 934388f44..94318bdf6 100644 --- a/website/public/zh/ChapterFour/1700~1799/1734.Decode-XORed-Permutation/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1734.Decode-XORed-Permutation/index.html @@ -12372,7 +12372,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1736.Latest-Time-by-Replacing-Hidden-Digits/index.html b/website/public/zh/ChapterFour/1700~1799/1736.Latest-Time-by-Replacing-Hidden-Digits/index.html index 4f1fca0ef..c4c34853f 100644 --- a/website/public/zh/ChapterFour/1700~1799/1736.Latest-Time-by-Replacing-Hidden-Digits/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1736.Latest-Time-by-Replacing-Hidden-Digits/index.html @@ -12367,7 +12367,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1738.Find-Kth-Largest-XOR-Coordinate-Value/index.html b/website/public/zh/ChapterFour/1700~1799/1738.Find-Kth-Largest-XOR-Coordinate-Value/index.html index 2f73ecafa..048f1cabc 100644 --- a/website/public/zh/ChapterFour/1700~1799/1738.Find-Kth-Largest-XOR-Coordinate-Value/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1738.Find-Kth-Largest-XOR-Coordinate-Value/index.html @@ -12397,7 +12397,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1742.Maximum-Number-of-Balls-in-a-Box/index.html b/website/public/zh/ChapterFour/1700~1799/1742.Maximum-Number-of-Balls-in-a-Box/index.html index 82d79b915..811575f63 100644 --- a/website/public/zh/ChapterFour/1700~1799/1742.Maximum-Number-of-Balls-in-a-Box/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1742.Maximum-Number-of-Balls-in-a-Box/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1744.Can-You-Eat-Your-Favorite-Candy-on-Your-Favorite-Day/index.html b/website/public/zh/ChapterFour/1700~1799/1744.Can-You-Eat-Your-Favorite-Candy-on-Your-Favorite-Day/index.html index df917e5fa..a09c56de3 100644 --- a/website/public/zh/ChapterFour/1700~1799/1744.Can-You-Eat-Your-Favorite-Candy-on-Your-Favorite-Day/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1744.Can-You-Eat-Your-Favorite-Candy-on-Your-Favorite-Day/index.html @@ -12381,7 +12381,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1748.Sum-of-Unique-Elements/index.html b/website/public/zh/ChapterFour/1700~1799/1748.Sum-of-Unique-Elements/index.html index 93d7c06e5..b337e5cbd 100644 --- a/website/public/zh/ChapterFour/1700~1799/1748.Sum-of-Unique-Elements/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1748.Sum-of-Unique-Elements/index.html @@ -12360,7 +12360,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1752.Check-if-Array-Is-Sorted-and-Rotated/index.html b/website/public/zh/ChapterFour/1700~1799/1752.Check-if-Array-Is-Sorted-and-Rotated/index.html index 9c09eb7b7..899effbdf 100644 --- a/website/public/zh/ChapterFour/1700~1799/1752.Check-if-Array-Is-Sorted-and-Rotated/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1752.Check-if-Array-Is-Sorted-and-Rotated/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1758.Minimum-Changes-To-Make-Alternating-Binary-String/index.html b/website/public/zh/ChapterFour/1700~1799/1758.Minimum-Changes-To-Make-Alternating-Binary-String/index.html index acfdf3567..23f457abd 100644 --- a/website/public/zh/ChapterFour/1700~1799/1758.Minimum-Changes-To-Make-Alternating-Binary-String/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1758.Minimum-Changes-To-Make-Alternating-Binary-String/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1763.Longest-Nice-Substring/index.html b/website/public/zh/ChapterFour/1700~1799/1763.Longest-Nice-Substring/index.html index 178bd80e8..9a2a4a168 100644 --- a/website/public/zh/ChapterFour/1700~1799/1763.Longest-Nice-Substring/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1763.Longest-Nice-Substring/index.html @@ -12426,7 +12426,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/1791.Find-Center-of-Star-Graph/index.html b/website/public/zh/ChapterFour/1700~1799/1791.Find-Center-of-Star-Graph/index.html index 64537005a..ef11f5fff 100644 --- a/website/public/zh/ChapterFour/1700~1799/1791.Find-Center-of-Star-Graph/index.html +++ b/website/public/zh/ChapterFour/1700~1799/1791.Find-Center-of-Star-Graph/index.html @@ -12349,7 +12349,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1700~1799/index.html b/website/public/zh/ChapterFour/1700~1799/index.html index 14a207120..f6d40d814 100644 --- a/website/public/zh/ChapterFour/1700~1799/index.html +++ b/website/public/zh/ChapterFour/1700~1799/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1800~1899/1816.Truncate-Sentence/index.html b/website/public/zh/ChapterFour/1800~1899/1816.Truncate-Sentence/index.html index 3b5078825..bdd02b0ce 100644 --- a/website/public/zh/ChapterFour/1800~1899/1816.Truncate-Sentence/index.html +++ b/website/public/zh/ChapterFour/1800~1899/1816.Truncate-Sentence/index.html @@ -12374,7 +12374,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/index.html b/website/public/zh/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/index.html index 864529c8b..2301c8910 100644 --- a/website/public/zh/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/index.html +++ b/website/public/zh/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/index.html @@ -12412,7 +12412,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1800~1899/1846.Maximum-Element-After-Decreasing-and-Rearranging/index.html b/website/public/zh/ChapterFour/1800~1899/1846.Maximum-Element-After-Decreasing-and-Rearranging/index.html index 378d598a5..ff6404d03 100644 --- a/website/public/zh/ChapterFour/1800~1899/1846.Maximum-Element-After-Decreasing-and-Rearranging/index.html +++ b/website/public/zh/ChapterFour/1800~1899/1846.Maximum-Element-After-Decreasing-and-Rearranging/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1800~1899/1877.Minimize-Maximum-Pair-Sum-in-Array/index.html b/website/public/zh/ChapterFour/1800~1899/1877.Minimize-Maximum-Pair-Sum-in-Array/index.html index 1502a984b..985a1e2ba 100644 --- a/website/public/zh/ChapterFour/1800~1899/1877.Minimize-Maximum-Pair-Sum-in-Array/index.html +++ b/website/public/zh/ChapterFour/1800~1899/1877.Minimize-Maximum-Pair-Sum-in-Array/index.html @@ -12373,7 +12373,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1800~1899/index.html b/website/public/zh/ChapterFour/1800~1899/index.html index f1edc30b9..0a7be3b4d 100644 --- a/website/public/zh/ChapterFour/1800~1899/index.html +++ b/website/public/zh/ChapterFour/1800~1899/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1900~1999/1984.Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores/index.html b/website/public/zh/ChapterFour/1900~1999/1984.Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores/index.html index 60b677b7e..a329b7081 100644 --- a/website/public/zh/ChapterFour/1900~1999/1984.Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores/index.html +++ b/website/public/zh/ChapterFour/1900~1999/1984.Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores/index.html @@ -12358,7 +12358,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/1900~1999/index.html b/website/public/zh/ChapterFour/1900~1999/index.html index 49531e9bf..d7678f7e6 100644 --- a/website/public/zh/ChapterFour/1900~1999/index.html +++ b/website/public/zh/ChapterFour/1900~1999/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2000~2099/2021.Brightest-Position-on-Street/index.html b/website/public/zh/ChapterFour/2000~2099/2021.Brightest-Position-on-Street/index.html index fa8dab6d8..4ed924322 100644 --- a/website/public/zh/ChapterFour/2000~2099/2021.Brightest-Position-on-Street/index.html +++ b/website/public/zh/ChapterFour/2000~2099/2021.Brightest-Position-on-Street/index.html @@ -12395,7 +12395,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2000~2099/2022.Convert-1D-Array-Into-2D-Array/index.html b/website/public/zh/ChapterFour/2000~2099/2022.Convert-1D-Array-Into-2D-Array/index.html index ea1bb1245..84b7f3165 100644 --- a/website/public/zh/ChapterFour/2000~2099/2022.Convert-1D-Array-Into-2D-Array/index.html +++ b/website/public/zh/ChapterFour/2000~2099/2022.Convert-1D-Array-Into-2D-Array/index.html @@ -12362,7 +12362,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2000~2099/2037.Minimum-Number-of-Moves-to-Seat-Everyone/index.html b/website/public/zh/ChapterFour/2000~2099/2037.Minimum-Number-of-Moves-to-Seat-Everyone/index.html index 68b6066a3..6b40e4d98 100644 --- a/website/public/zh/ChapterFour/2000~2099/2037.Minimum-Number-of-Moves-to-Seat-Everyone/index.html +++ b/website/public/zh/ChapterFour/2000~2099/2037.Minimum-Number-of-Moves-to-Seat-Everyone/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2000~2099/2038.Remove-Colored-Pieces-if-Both-Neighbors-are-the-Same-Color/index.html b/website/public/zh/ChapterFour/2000~2099/2038.Remove-Colored-Pieces-if-Both-Neighbors-are-the-Same-Color/index.html index 6bdeca53c..bdc418454 100644 --- a/website/public/zh/ChapterFour/2000~2099/2038.Remove-Colored-Pieces-if-Both-Neighbors-are-the-Same-Color/index.html +++ b/website/public/zh/ChapterFour/2000~2099/2038.Remove-Colored-Pieces-if-Both-Neighbors-are-the-Same-Color/index.html @@ -12400,7 +12400,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2000~2099/2043.Simple-Bank-System/index.html b/website/public/zh/ChapterFour/2000~2099/2043.Simple-Bank-System/index.html index 3cfe53904..f55b4c340 100644 --- a/website/public/zh/ChapterFour/2000~2099/2043.Simple-Bank-System/index.html +++ b/website/public/zh/ChapterFour/2000~2099/2043.Simple-Bank-System/index.html @@ -12411,7 +12411,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2000~2099/2096.Step-By-Step-Directions-From-a-Binary-Tree-Node-to-Another/index.html b/website/public/zh/ChapterFour/2000~2099/2096.Step-By-Step-Directions-From-a-Binary-Tree-Node-to-Another/index.html index aefbe13c7..65735546e 100644 --- a/website/public/zh/ChapterFour/2000~2099/2096.Step-By-Step-Directions-From-a-Binary-Tree-Node-to-Another/index.html +++ b/website/public/zh/ChapterFour/2000~2099/2096.Step-By-Step-Directions-From-a-Binary-Tree-Node-to-Another/index.html @@ -12435,7 +12435,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2000~2099/index.html b/website/public/zh/ChapterFour/2000~2099/index.html index de359c34f..8a6a4253e 100644 --- a/website/public/zh/ChapterFour/2000~2099/index.html +++ b/website/public/zh/ChapterFour/2000~2099/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2164.Sort-Even-and-Odd-Indices-Independently/index.html b/website/public/zh/ChapterFour/2100~2199/2164.Sort-Even-and-Odd-Indices-Independently/index.html index 2eeedb8fa..86071bf74 100644 --- a/website/public/zh/ChapterFour/2100~2199/2164.Sort-Even-and-Odd-Indices-Independently/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2164.Sort-Even-and-Odd-Indices-Independently/index.html @@ -12391,7 +12391,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2165.Smallest-Value-of-the-Rearranged-Number/index.html b/website/public/zh/ChapterFour/2100~2199/2165.Smallest-Value-of-the-Rearranged-Number/index.html index 89e10b57a..3d1dc7d5d 100644 --- a/website/public/zh/ChapterFour/2100~2199/2165.Smallest-Value-of-the-Rearranged-Number/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2165.Smallest-Value-of-the-Rearranged-Number/index.html @@ -12396,7 +12396,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2166.Design-Bitset/index.html b/website/public/zh/ChapterFour/2100~2199/2166.Design-Bitset/index.html index b6539fdce..47a2e56ae 100644 --- a/website/public/zh/ChapterFour/2100~2199/2166.Design-Bitset/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2166.Design-Bitset/index.html @@ -12454,7 +12454,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2167.Minimum-Time-to-Remove-All-Cars-Containing-Illegal-Goods/index.html b/website/public/zh/ChapterFour/2100~2199/2167.Minimum-Time-to-Remove-All-Cars-Containing-Illegal-Goods/index.html index c4efdf154..40e370fae 100644 --- a/website/public/zh/ChapterFour/2100~2199/2167.Minimum-Time-to-Remove-All-Cars-Containing-Illegal-Goods/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2167.Minimum-Time-to-Remove-All-Cars-Containing-Illegal-Goods/index.html @@ -12455,7 +12455,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2169.Count-Operations-to-Obtain-Zero/index.html b/website/public/zh/ChapterFour/2100~2199/2169.Count-Operations-to-Obtain-Zero/index.html index 37bb14843..593a08203 100644 --- a/website/public/zh/ChapterFour/2100~2199/2169.Count-Operations-to-Obtain-Zero/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2169.Count-Operations-to-Obtain-Zero/index.html @@ -12366,7 +12366,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2170.Minimum-Operations-to-Make-the-Array-Alternating/index.html b/website/public/zh/ChapterFour/2100~2199/2170.Minimum-Operations-to-Make-the-Array-Alternating/index.html index 564bcf2e5..d5fe29b0b 100644 --- a/website/public/zh/ChapterFour/2100~2199/2170.Minimum-Operations-to-Make-the-Array-Alternating/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2170.Minimum-Operations-to-Make-the-Array-Alternating/index.html @@ -12421,7 +12421,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2171.Removing-Minimum-Number-of-Magic-Beans/index.html b/website/public/zh/ChapterFour/2100~2199/2171.Removing-Minimum-Number-of-Magic-Beans/index.html index b836d4b95..25b25daea 100644 --- a/website/public/zh/ChapterFour/2100~2199/2171.Removing-Minimum-Number-of-Magic-Beans/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2171.Removing-Minimum-Number-of-Magic-Beans/index.html @@ -12379,7 +12379,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2180.Count-Integers-With-Even-Digit-Sum/index.html b/website/public/zh/ChapterFour/2100~2199/2180.Count-Integers-With-Even-Digit-Sum/index.html index 119be0ddf..8a817cc07 100644 --- a/website/public/zh/ChapterFour/2100~2199/2180.Count-Integers-With-Even-Digit-Sum/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2180.Count-Integers-With-Even-Digit-Sum/index.html @@ -12363,7 +12363,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2181.Merge-Nodes-in-Between-Zeros/index.html b/website/public/zh/ChapterFour/2100~2199/2181.Merge-Nodes-in-Between-Zeros/index.html index 3ccd2c57b..07dd0c132 100644 --- a/website/public/zh/ChapterFour/2100~2199/2181.Merge-Nodes-in-Between-Zeros/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2181.Merge-Nodes-in-Between-Zeros/index.html @@ -12386,7 +12386,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2182.Construct-String-With-Repeat-Limit/index.html b/website/public/zh/ChapterFour/2100~2199/2182.Construct-String-With-Repeat-Limit/index.html index 28e851257..4d26046f9 100644 --- a/website/public/zh/ChapterFour/2100~2199/2182.Construct-String-With-Repeat-Limit/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2182.Construct-String-With-Repeat-Limit/index.html @@ -12388,7 +12388,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/2183.Count-Array-Pairs-Divisible-by-K/index.html b/website/public/zh/ChapterFour/2100~2199/2183.Count-Array-Pairs-Divisible-by-K/index.html index 3f7eccec0..a423ea50e 100644 --- a/website/public/zh/ChapterFour/2100~2199/2183.Count-Array-Pairs-Divisible-by-K/index.html +++ b/website/public/zh/ChapterFour/2100~2199/2183.Count-Array-Pairs-Divisible-by-K/index.html @@ -12402,7 +12402,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2100~2199/index.html b/website/public/zh/ChapterFour/2100~2199/index.html index 838ea757a..7b273f58f 100644 --- a/website/public/zh/ChapterFour/2100~2199/index.html +++ b/website/public/zh/ChapterFour/2100~2199/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/2200~2299/index.html b/website/public/zh/ChapterFour/2200~2299/index.html index ac81b2697..d903e7f14 100644 --- a/website/public/zh/ChapterFour/2200~2299/index.html +++ b/website/public/zh/ChapterFour/2200~2299/index.html @@ -12267,7 +12267,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterFour/index.html b/website/public/zh/ChapterFour/index.html index 977654d5f..efe10d1b9 100644 --- a/website/public/zh/ChapterFour/index.html +++ b/website/public/zh/ChapterFour/index.html @@ -12287,7 +12287,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterOne/Algorithm/index.html b/website/public/zh/ChapterOne/Algorithm/index.html index 15b06f2cd..09b618261 100644 --- a/website/public/zh/ChapterOne/Algorithm/index.html +++ b/website/public/zh/ChapterOne/Algorithm/index.html @@ -12413,7 +12413,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterOne/Data_Structure/index.html b/website/public/zh/ChapterOne/Data_Structure/index.html index 033ddcf3f..657ef9dd2 100644 --- a/website/public/zh/ChapterOne/Data_Structure/index.html +++ b/website/public/zh/ChapterOne/Data_Structure/index.html @@ -12384,7 +12384,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterOne/Time_Complexity/index.html b/website/public/zh/ChapterOne/Time_Complexity/index.html index 835be99bf..4376d3b82 100644 --- a/website/public/zh/ChapterOne/Time_Complexity/index.html +++ b/website/public/zh/ChapterOne/Time_Complexity/index.html @@ -12459,7 +12459,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterOne/index.html b/website/public/zh/ChapterOne/index.html index f84af44d8..f7e733111 100644 --- a/website/public/zh/ChapterOne/index.html +++ b/website/public/zh/ChapterOne/index.html @@ -12384,7 +12384,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterThree/Binary_Indexed_Tree/index.html b/website/public/zh/ChapterThree/Binary_Indexed_Tree/index.html index f76762d2b..5c7e77a82 100644 --- a/website/public/zh/ChapterThree/Binary_Indexed_Tree/index.html +++ b/website/public/zh/ChapterThree/Binary_Indexed_Tree/index.html @@ -13046,7 +13046,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterThree/LFUCache/index.html b/website/public/zh/ChapterThree/LFUCache/index.html index 79ba3f6c4..4f23f104e 100644 --- a/website/public/zh/ChapterThree/LFUCache/index.html +++ b/website/public/zh/ChapterThree/LFUCache/index.html @@ -12607,7 +12607,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterThree/LRUCache/index.html b/website/public/zh/ChapterThree/LRUCache/index.html index 3a9b88198..aaa3369a0 100644 --- a/website/public/zh/ChapterThree/LRUCache/index.html +++ b/website/public/zh/ChapterThree/LRUCache/index.html @@ -12539,7 +12539,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterThree/Segment_Tree/index.html b/website/public/zh/ChapterThree/Segment_Tree/index.html index e4264a46f..cc56b0786 100644 --- a/website/public/zh/ChapterThree/Segment_Tree/index.html +++ b/website/public/zh/ChapterThree/Segment_Tree/index.html @@ -12832,7 +12832,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterThree/UnionFind/index.html b/website/public/zh/ChapterThree/UnionFind/index.html index 69413f969..b88599a4e 100644 --- a/website/public/zh/ChapterThree/UnionFind/index.html +++ b/website/public/zh/ChapterThree/UnionFind/index.html @@ -12423,7 +12423,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterThree/index.html b/website/public/zh/ChapterThree/index.html index 43674bf1f..ec6ae56af 100644 --- a/website/public/zh/ChapterThree/index.html +++ b/website/public/zh/ChapterThree/index.html @@ -12283,7 +12283,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Array/index.html b/website/public/zh/ChapterTwo/Array/index.html index 30e5b83da..9b0d23a34 100644 --- a/website/public/zh/ChapterTwo/Array/index.html +++ b/website/public/zh/ChapterTwo/Array/index.html @@ -16880,7 +16880,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Backtracking/index.html b/website/public/zh/ChapterTwo/Backtracking/index.html index 47ca8f24f..6291e91e6 100644 --- a/website/public/zh/ChapterTwo/Backtracking/index.html +++ b/website/public/zh/ChapterTwo/Backtracking/index.html @@ -12822,7 +12822,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Binary_Indexed_Tree/index.html b/website/public/zh/ChapterTwo/Binary_Indexed_Tree/index.html index e503051e0..1c3071a2f 100644 --- a/website/public/zh/ChapterTwo/Binary_Indexed_Tree/index.html +++ b/website/public/zh/ChapterTwo/Binary_Indexed_Tree/index.html @@ -12383,7 +12383,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Binary_Search/index.html b/website/public/zh/ChapterTwo/Binary_Search/index.html index fb03f2e9d..a67087244 100644 --- a/website/public/zh/ChapterTwo/Binary_Search/index.html +++ b/website/public/zh/ChapterTwo/Binary_Search/index.html @@ -13351,7 +13351,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Bit_Manipulation/index.html b/website/public/zh/ChapterTwo/Bit_Manipulation/index.html index b20a859a8..19854b470 100644 --- a/website/public/zh/ChapterTwo/Bit_Manipulation/index.html +++ b/website/public/zh/ChapterTwo/Bit_Manipulation/index.html @@ -12981,7 +12981,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Breadth_First_Search/index.html b/website/public/zh/ChapterTwo/Breadth_First_Search/index.html index 950911062..ac0c66faa 100644 --- a/website/public/zh/ChapterTwo/Breadth_First_Search/index.html +++ b/website/public/zh/ChapterTwo/Breadth_First_Search/index.html @@ -13184,7 +13184,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Depth_First_Search/index.html b/website/public/zh/ChapterTwo/Depth_First_Search/index.html index 5fbb77efe..254c2d867 100644 --- a/website/public/zh/ChapterTwo/Depth_First_Search/index.html +++ b/website/public/zh/ChapterTwo/Depth_First_Search/index.html @@ -13481,7 +13481,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Dynamic_Programming/index.html b/website/public/zh/ChapterTwo/Dynamic_Programming/index.html index d7bd440d5..8c12712fc 100644 --- a/website/public/zh/ChapterTwo/Dynamic_Programming/index.html +++ b/website/public/zh/ChapterTwo/Dynamic_Programming/index.html @@ -13382,7 +13382,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Hash_Table/index.html b/website/public/zh/ChapterTwo/Hash_Table/index.html index 6bc1348b7..cfa287ba2 100644 --- a/website/public/zh/ChapterTwo/Hash_Table/index.html +++ b/website/public/zh/ChapterTwo/Hash_Table/index.html @@ -14075,7 +14075,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Linked_List/index.html b/website/public/zh/ChapterTwo/Linked_List/index.html index 726e1cf35..c3e9fa4e9 100644 --- a/website/public/zh/ChapterTwo/Linked_List/index.html +++ b/website/public/zh/ChapterTwo/Linked_List/index.html @@ -12800,7 +12800,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Math/index.html b/website/public/zh/ChapterTwo/Math/index.html index 29b46858a..55a92f2aa 100644 --- a/website/public/zh/ChapterTwo/Math/index.html +++ b/website/public/zh/ChapterTwo/Math/index.html @@ -13855,7 +13855,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Segment_Tree/index.html b/website/public/zh/ChapterTwo/Segment_Tree/index.html index 8de9d7ead..6dcecb3c3 100644 --- a/website/public/zh/ChapterTwo/Segment_Tree/index.html +++ b/website/public/zh/ChapterTwo/Segment_Tree/index.html @@ -12476,7 +12476,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Sliding_Window/index.html b/website/public/zh/ChapterTwo/Sliding_Window/index.html index d96832534..a423b2c3e 100644 --- a/website/public/zh/ChapterTwo/Sliding_Window/index.html +++ b/website/public/zh/ChapterTwo/Sliding_Window/index.html @@ -12709,7 +12709,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Sorting/index.html b/website/public/zh/ChapterTwo/Sorting/index.html index 3fe18b665..88f6c823c 100644 --- a/website/public/zh/ChapterTwo/Sorting/index.html +++ b/website/public/zh/ChapterTwo/Sorting/index.html @@ -13502,7 +13502,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Stack/index.html b/website/public/zh/ChapterTwo/Stack/index.html index 16b60a016..a0ded6669 100644 --- a/website/public/zh/ChapterTwo/Stack/index.html +++ b/website/public/zh/ChapterTwo/Stack/index.html @@ -12939,7 +12939,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/String/index.html b/website/public/zh/ChapterTwo/String/index.html index ba4d0af68..48d71e2e1 100644 --- a/website/public/zh/ChapterTwo/String/index.html +++ b/website/public/zh/ChapterTwo/String/index.html @@ -14284,7 +14284,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Tree/index.html b/website/public/zh/ChapterTwo/Tree/index.html index 8fefda47f..ba669f159 100644 --- a/website/public/zh/ChapterTwo/Tree/index.html +++ b/website/public/zh/ChapterTwo/Tree/index.html @@ -13228,7 +13228,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Two_Pointers/index.html b/website/public/zh/ChapterTwo/Two_Pointers/index.html index 35ea78ffc..bdc43c0ec 100644 --- a/website/public/zh/ChapterTwo/Two_Pointers/index.html +++ b/website/public/zh/ChapterTwo/Two_Pointers/index.html @@ -13162,7 +13162,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/Union_Find/index.html b/website/public/zh/ChapterTwo/Union_Find/index.html index 0838fcb3b..7dc3b5799 100644 --- a/website/public/zh/ChapterTwo/Union_Find/index.html +++ b/website/public/zh/ChapterTwo/Union_Find/index.html @@ -12601,7 +12601,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/ChapterTwo/index.html b/website/public/zh/ChapterTwo/index.html index c3d977c83..c768ff8ec 100644 --- a/website/public/zh/ChapterTwo/index.html +++ b/website/public/zh/ChapterTwo/index.html @@ -12289,7 +12289,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/categories/index.html b/website/public/zh/categories/index.html index a6c61ef2c..bef8f3178 100644 --- a/website/public/zh/categories/index.html +++ b/website/public/zh/categories/index.html @@ -12278,7 +12278,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/index.html b/website/public/zh/index.html index fb319d945..1a3027d19 100644 --- a/website/public/zh/index.html +++ b/website/public/zh/index.html @@ -12385,7 +12385,7 @@

id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) { diff --git a/website/public/zh/tags/index.html b/website/public/zh/tags/index.html index 1fce27317..a7cd12fe7 100644 --- a/website/public/zh/tags/index.html +++ b/website/public/zh/tags/index.html @@ -12278,7 +12278,7 @@ id: md5(gitalkPath), distractionFreeMode: false, body: location.href, - proxy: 'https:\/\/books.halfrost.com\/gitalk-oauth' + proxy: 'https:\/\/gitalk-oauth.ydz627.workers.dev' }); (function() { if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {