问题标签 [word-list]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 如何从列表中选择一个随机的英文单词
获得一个返回随机英文单词(最好是名词)的函数的最佳方法是什么,而不事先在文件中保留所有可能单词的列表?
python - 以编程方式使用的免费单词列表?
我的一个朋友正在谈论她喜欢玩的文字游戏,您可以尝试通过一次切换一个字母来将一个单词转换为另一个单词(它们具有相同数量的字母),每次迭代都会产生一个真实的单词。
例子:
MOON --> WOLF
GOON
GOOF
GOLF
WOLF
我认为编写一个程序来生成解决方案会是一个有趣的小项目,然后再进一步,给定 2 个单词,确定解决方案是否存在以及最佳解决方案中的迭代次数。
问题是我无法找到可以以编程方式轻松访问的免费单词列表。我也在考虑以此为借口来学习 Python,所以如果有人知道免费单词列表和如何从 Python 解析和访问它的指针,那就太好了。找出如何找到最佳路径的算法,我将自己研究。
python - 从python中的列表中选择一个随机词?
在 Python 3 中,我如何从单词列表中打印一个随机单词?
java - 使用 Java 定义单词
我想知道 Java 中是否有一个 API 可以定义单词并找到单词的起源。我记得不久前搜索过这个并看到“apache commons”,但我不确定。
所以基本上,用户将能够输入一个词“溢出”然后程序将能够定义这个词。所以我正在寻找一个可以定义单词并找到单词来源的 API。所以“recherche”这个词的起源是“法语”。
python - Random word generator- Python
So i'm basically working on a project where the computer takes a word from a list of words and jumbles it up for the user. there's only one problem: I don't want to keep having to write tons of words in the list, so i'm wondering if there's a way to import a ton of random words so even I don't know what it is, and then I could enjoy the game too? This is the coding of the whole program, it only has 6 words that i put in:
java - 根据单词的频率对列表进行排序
我需要根据其频率对单词列表进行排序。
我的输入:
例如在我的数据结构中,我会有
我需要以这种方式在输出中对数据结构进行排序:
这样,如果我弹出数据结构的顶部,我将能够获得元素及其相应的频率。
元素的数量最初是未知的,因此数组是不可行的。如果我想获得前几个元素,我只需要按顺序访问它。这在Java中可能吗?
cryptography - 不同且紧凑的单词列表来表示例如人类的指纹或其他二进制数据?
您可以建议使用哪些单词列表/“字典”来传输二进制数据,例如密码指纹、哈希等?
这种单词列表的标准是例如
- 紧凑,即一长串相当短的单词,因此您需要更少的单词来传输数据
- 有特色的词/易于区分(没有同音异义,甚至不会因轻微的发音错误而意外造成)
- 简单的拼音
python - 通过字符列表列表生成单词列表
我想通过字符列表生成一个单词列表,例如:
wherea[0]
将所有可能的字符存储在第一位,a[1]
将所有可能的字符存储在第二位,依此类推。列表“A”生成的所有可能的单词将是:
我通过以下方式生成此列表:
此代码适用于固定长度的list(i.e. len(A))
. 我想编写一个通用代码,它可以按任何大小的列表生成词表。
shell - 逐行提取(流式)压缩的单词表直接到shell
我想提取一个巨大的单词表并将其内容用作外壳的“流”。
这将允许执行字典攻击而不必解压缩整个单词表。
regex - Regular expression to match all words except those containing a certain pattern
Suppose I have two lists of words and I have to match all words in the first list but none in the second list. Now suppose all the words in the second list (those that are not to be matched) contain specific pattern: character1 followed by character2 then character2 and character1 again. For example, it contains such words as "abba", "otto", "trillion", "unfitting", etc.
I could easily match this pattern by using regex expression (\w)(\w)\2\1
. And to match all the words in the second list I could use \w*(\w)(\w)\2\1\w*
. But how do I match all words EXCEPT those containing this pattern?
One of the things I tried is (?!\w*(\w)(\w)\2\1\w*)
, but, for some reason it also matches the transition between first and second characters in the second list. I know I'm doing something wrong but I can't figure out what.