TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

An advent of code solution which takes seconds on Safari and minutes on Chrome

8 点作者 bikeshaving超过 4 年前

1 comment

mjsir911超过 4 年前
A friend ran into this for her solution in javascript, and the drastic speed up was replacing the javascript object with a `Map` object.<p><pre><code> const seen = new Map() </code></pre> with `seen.set` and `seen.get` replacing `[]` runs the code in 5s on node on my machine