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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

wordle solv

3 点作者 atrudeau超过 3 年前

1 comment

dane-pgp超过 3 年前
When I first got into Wordle, I remember discussions about what is a good starting word, and I would usually opt for something like:<p><pre><code> STARE </code></pre> Then, when I discovered <a href="https:&#x2F;&#x2F;squabble.me" rel="nofollow">https:&#x2F;&#x2F;squabble.me</a> (which implements a competitive Wordle with &quot;battle royale&quot; dynamics) I decided that spending time thinking of the optimal follow-up word was costing me too much HP, so I found a pair of starting words:<p><pre><code> YOUTH ARISE </code></pre> which gave me coverage of all the vowels (including Y) and some other common letters.<p>After gaining more experience with this setup, I looked at letter frequency charts, and used an anagram solver to find a trio of starting words:<p><pre><code> THUMP SOLID CRANE </code></pre> which was enough of an advantage that I was able to win a good percentage of Squabble games.<p>Today, though, I checked a replay of a game where I came second, and discovered that someone had taken this strat to the next level, since they were consistently starting with the four guesses:<p><pre><code> DUCKY FORTH WINGS MAPLE </code></pre> This seems riskier, as you only give yourself a single &quot;spare&quot; guess in which to try finding the locations of some of the letters you&#x27;ve already found, and I have often been in situations where I needed to brute force the final guess even if I have most of the letters in the right place, because a pattern like -ARN- (in green) didn&#x27;t bring the word &quot;varna&quot; to mind, for example.<p>Anyway, I&#x27;ll have to now try both that four word opening and this newly found five word opening:<p><pre><code> CHUMP DRIFT GLOBE SNAKY LATER </code></pre> and see which is quicker: finding the missing information myself with an extra guess (and brute forcing plausible looking words), or solving the word directly from the minimally required information available.