prompt
stringlengths
218
241
response
stringlengths
13
216
word
stringlengths
1
24
metadata
dict
Count the number of occurrences of each character in the word 'horripilate' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"h": 1, "o": 1, "r": 2, "i": 2, "p": 1, "l": 1, "a": 1, "t": 1, "e": 1}
horripilate
{ "character_count": 11, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word '心材' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u5fc3": 1, "\u6750": 1}
心材
{ "character_count": 2, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'irrepealability' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"i": 3, "r": 2, "e": 2, "p": 1, "a": 2, "l": 2, "b": 1, "t": 1, "y": 1}
irrepealability
{ "character_count": 15, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'quiritary' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"q": 1, "u": 1, "i": 2, "r": 2, "t": 1, "a": 1, "y": 1}
quiritary
{ "character_count": 9, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'thuggish' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 1, "h": 2, "u": 1, "g": 2, "i": 1, "s": 1}
thuggish
{ "character_count": 8, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'サクラソウ' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30b5": 1, "\u30af": 1, "\u30e9": 1, "\u30bd": 1, "\u30a6": 1}
サクラソウ
{ "character_count": 5, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'depiedmontize' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"d": 2, "e": 3, "p": 1, "i": 2, "m": 1, "o": 1, "n": 1, "t": 1, "z": 1}
depiedmontize
{ "character_count": 13, "difficulty": 9, "language": "english" }
Count the number of occurrences of each character in the word 'Hippocrenian' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"H": 1, "i": 2, "p": 2, "o": 1, "c": 1, "r": 1, "e": 1, "n": 2, "a": 1}
Hippocrenian
{ "character_count": 12, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'Hallel' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"H": 1, "a": 1, "l": 3, "e": 1}
Hallel
{ "character_count": 6, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'मलाया का छुरा' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u092e": 1, "\u0932": 1, "\u093e": 4, "\u092f": 1, " ": 2, "\u0915": 1, "\u091b": 1, "\u0941": 1, "\u0930": 1}
मलाया का छुरा
{ "character_count": 13, "difficulty": 4, "language": "hindi" }
Count the number of occurrences of each character in the word 'disjunctor' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"d": 1, "i": 1, "s": 1, "j": 1, "u": 1, "n": 1, "c": 1, "t": 1, "o": 1, "r": 1}
disjunctor
{ "character_count": 10, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'злобность' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0437": 1, "\u043b": 1, "\u043e": 2, "\u0431": 1, "\u043d": 1, "\u0441": 1, "\u0442": 1, "\u044c": 1}
злобность
{ "character_count": 9, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word '奉納の' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u5949": 1, "\u7d0d": 1, "\u306e": 1}
奉納の
{ "character_count": 3, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word '悲しい' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u60b2": 1, "\u3057": 1, "\u3044": 1}
悲しい
{ "character_count": 3, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'zwitterionic' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"z": 1, "w": 1, "i": 3, "t": 2, "e": 1, "r": 1, "o": 1, "n": 1, "c": 1}
zwitterionic
{ "character_count": 12, "difficulty": 8, "language": "hindi" }
Count the number of occurrences of each character in the word 'boskiness' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"b": 1, "o": 1, "s": 3, "k": 1, "i": 1, "n": 1, "e": 1}
boskiness
{ "character_count": 9, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'barracouta' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"b": 1, "a": 3, "r": 2, "c": 1, "o": 1, "u": 1, "t": 1}
barracouta
{ "character_count": 10, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'arrhenotoky' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"a": 1, "r": 2, "h": 1, "e": 1, "n": 1, "o": 2, "t": 1, "k": 1, "y": 1}
arrhenotoky
{ "character_count": 11, "difficulty": 8, "language": "chinese" }
Count the number of occurrences of each character in the word '十柱' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u5341": 1, "\u67f1": 1}
十柱
{ "character_count": 2, "difficulty": 2, "language": "chinese" }
Count the number of occurrences of each character in the word 'автомобиль' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0430": 1, "\u0432": 1, "\u0442": 1, "\u043e": 2, "\u043c": 1, "\u0431": 1, "\u0438": 1, "\u043b": 1, "\u044c": 1}
автомобиль
{ "character_count": 10, "difficulty": 4, "language": "russian" }
Count the number of occurrences of each character in the word 'राग' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0930": 1, "\u093e": 1, "\u0917": 1}
राग
{ "character_count": 3, "difficulty": 2, "language": "hindi" }
Count the number of occurrences of each character in the word '女家長制度' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u5973": 1, "\u5bb6": 1, "\u9577": 1, "\u5236": 1, "\u5ea6": 1}
女家長制度
{ "character_count": 5, "difficulty": 8, "language": "japanese" }
Count the number of occurrences of each character in the word '一卷' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u4e00": 1, "\u5377": 1}
一卷
{ "character_count": 2, "difficulty": 2, "language": "chinese" }
Count the number of occurrences of each character in the word 'bryophyte' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"b": 1, "r": 1, "y": 2, "o": 1, "p": 1, "h": 1, "t": 1, "e": 1}
bryophyte
{ "character_count": 9, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'dewret' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"d": 1, "e": 2, "w": 1, "r": 1, "t": 1}
dewret
{ "character_count": 6, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word '新罕布什尔州' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u65b0": 1, "\u7f55": 1, "\u5e03": 1, "\u4ec0": 1, "\u5c14": 1, "\u5dde": 1}
新罕布什尔州
{ "character_count": 6, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'понимать' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u043f": 1, "\u043e": 1, "\u043d": 1, "\u0438": 1, "\u043c": 1, "\u0430": 1, "\u0442": 1, "\u044c": 1}
понимать
{ "character_count": 8, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word 'constringency' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"c": 2, "o": 1, "n": 3, "s": 1, "t": 1, "r": 1, "i": 1, "g": 1, "e": 1, "y": 1}
constringency
{ "character_count": 13, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word '巴哈马' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u5df4": 1, "\u54c8": 1, "\u9a6c": 1}
巴哈马
{ "character_count": 3, "difficulty": 2, "language": "chinese" }
Count the number of occurrences of each character in the word '西蒙' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u897f": 1, "\u8499": 1}
西蒙
{ "character_count": 2, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'predesignation' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"p": 1, "r": 1, "e": 2, "d": 1, "s": 1, "i": 2, "g": 1, "n": 2, "a": 1, "t": 1, "o": 1}
predesignation
{ "character_count": 14, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'ramulose' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"r": 1, "a": 1, "m": 1, "u": 1, "l": 1, "o": 1, "s": 1, "e": 1}
ramulose
{ "character_count": 8, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'inescutcheon' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"i": 1, "n": 2, "e": 2, "s": 1, "c": 2, "u": 1, "t": 1, "h": 1, "o": 1}
inescutcheon
{ "character_count": 12, "difficulty": 10, "language": "japanese" }
Count the number of occurrences of each character in the word 'फ़ॉर्नेक्स' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u092b": 1, "\u093c": 1, "\u0949": 1, "\u0930": 1, "\u094d": 2, "\u0928": 1, "\u0947": 1, "\u0915": 1, "\u0938": 1}
फ़ॉर्नेक्स
{ "character_count": 10, "difficulty": 7, "language": "hindi" }
Count the number of occurrences of each character in the word '澳大利亚' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u6fb3": 1, "\u5927": 1, "\u5229": 1, "\u4e9a": 1}
澳大利亚
{ "character_count": 4, "difficulty": 8, "language": "chinese" }
Count the number of occurrences of each character in the word 'डंक मार' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0921": 1, "\u0902": 1, "\u0915": 1, " ": 1, "\u092e": 1, "\u093e": 1, "\u0930": 1}
डंक मार
{ "character_count": 7, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'papism' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"p": 2, "a": 1, "i": 1, "s": 1, "m": 1}
papism
{ "character_count": 6, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'cubica' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"c": 2, "u": 1, "b": 1, "i": 1, "a": 1}
cubica
{ "character_count": 6, "difficulty": 2, "language": "hindi" }
Count the number of occurrences of each character in the word '黑暗' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u9ed1": 1, "\u6697": 1}
黑暗
{ "character_count": 2, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'ラチェット' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30e9": 1, "\u30c1": 1, "\u30a7": 1, "\u30c3": 1, "\u30c8": 1}
ラチェット
{ "character_count": 5, "difficulty": 2, "language": "japanese" }
Count the number of occurrences of each character in the word 'chronoscope' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"c": 2, "h": 1, "r": 1, "o": 3, "n": 1, "s": 1, "p": 1, "e": 1}
chronoscope
{ "character_count": 11, "difficulty": 6, "language": "hindi" }
Count the number of occurrences of each character in the word 'テンピン' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30c6": 1, "\u30f3": 2, "\u30d4": 1}
テンピン
{ "character_count": 4, "difficulty": 2, "language": "japanese" }
Count the number of occurrences of each character in the word 'Hippocrenian' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"H": 1, "i": 2, "p": 2, "o": 1, "c": 1, "r": 1, "e": 1, "n": 2, "a": 1}
Hippocrenian
{ "character_count": 12, "difficulty": 10, "language": "chinese" }
Count the number of occurrences of each character in the word '弱的' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u5f31": 1, "\u7684": 1}
弱的
{ "character_count": 2, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word '惟一地' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u60df": 1, "\u4e00": 1, "\u5730": 1}
惟一地
{ "character_count": 3, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'preganglionic' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"p": 1, "r": 1, "e": 1, "g": 2, "a": 1, "n": 2, "l": 1, "i": 2, "o": 1, "c": 1}
preganglionic
{ "character_count": 13, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'traditioner' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 2, "r": 2, "a": 1, "d": 1, "i": 2, "o": 1, "n": 1, "e": 1}
traditioner
{ "character_count": 11, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'dealation' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"d": 1, "e": 1, "a": 2, "l": 1, "t": 1, "i": 1, "o": 1, "n": 1}
dealation
{ "character_count": 9, "difficulty": 4, "language": "english" }
Count the number of occurrences of each character in the word 'Hallel' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"H": 1, "a": 1, "l": 3, "e": 1}
Hallel
{ "character_count": 6, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'zacaton' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"z": 1, "a": 2, "c": 1, "t": 1, "o": 1, "n": 1}
zacaton
{ "character_count": 7, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'बर्बाद' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u092c": 2, "\u0930": 1, "\u094d": 1, "\u093e": 1, "\u0926": 1}
बर्बाद
{ "character_count": 6, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word '三叉形' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u4e09": 1, "\u53c9": 1, "\u5f62": 1}
三叉形
{ "character_count": 3, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'rheumatoidally' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"r": 1, "h": 1, "e": 1, "u": 1, "m": 1, "a": 2, "t": 1, "o": 1, "i": 1, "d": 1, "l": 2, "y": 1}
rheumatoidally
{ "character_count": 14, "difficulty": 9, "language": "english" }
Count the number of occurrences of each character in the word 'stiltbird' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"s": 1, "t": 2, "i": 2, "l": 1, "b": 1, "r": 1, "d": 1}
stiltbird
{ "character_count": 9, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'quiescency' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"q": 1, "u": 1, "i": 1, "e": 2, "s": 1, "c": 2, "n": 1, "y": 1}
quiescency
{ "character_count": 10, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'nonfluorescent' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"n": 3, "o": 2, "f": 1, "l": 1, "u": 1, "r": 1, "e": 2, "s": 1, "c": 1, "t": 1}
nonfluorescent
{ "character_count": 14, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'octonocular' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"o": 3, "c": 2, "t": 1, "n": 1, "u": 1, "l": 1, "a": 1, "r": 1}
octonocular
{ "character_count": 11, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'scalled' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"s": 1, "c": 1, "a": 1, "l": 2, "e": 1, "d": 1}
scalled
{ "character_count": 7, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word '金銭' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u91d1": 1, "\u92ad": 1}
金銭
{ "character_count": 2, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'bitterling' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"b": 1, "i": 2, "t": 2, "e": 1, "r": 1, "l": 1, "n": 1, "g": 1}
bitterling
{ "character_count": 10, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'escheat' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"e": 2, "s": 1, "c": 1, "h": 1, "a": 1, "t": 1}
escheat
{ "character_count": 7, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'nonscientific' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"n": 3, "o": 1, "s": 1, "c": 2, "i": 3, "e": 1, "t": 1, "f": 1}
nonscientific
{ "character_count": 13, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'millennium' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"m": 2, "i": 2, "l": 2, "e": 1, "n": 2, "u": 1}
millennium
{ "character_count": 10, "difficulty": 5, "language": "english" }
Count the number of occurrences of each character in the word 'キネシス' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30ad": 1, "\u30cd": 1, "\u30b7": 1, "\u30b9": 1}
キネシス
{ "character_count": 4, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'быстрый' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0431": 1, "\u044b": 2, "\u0441": 1, "\u0442": 1, "\u0440": 1, "\u0439": 1}
быстрый
{ "character_count": 7, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word '博学的' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u535a": 1, "\u5b66": 1, "\u7684": 1}
博学的
{ "character_count": 3, "difficulty": 4, "language": "chinese" }
Count the number of occurrences of each character in the word 'स्फुटन' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0938": 1, "\u094d": 1, "\u092b": 1, "\u0941": 1, "\u091f": 1, "\u0928": 1}
स्फुटन
{ "character_count": 6, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'calamus' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"c": 1, "a": 2, "l": 1, "m": 1, "u": 1, "s": 1}
calamus
{ "character_count": 7, "difficulty": 4, "language": "english" }
Count the number of occurrences of each character in the word '多数から成る' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u591a": 1, "\u6570": 1, "\u304b": 1, "\u3089": 1, "\u6210": 1, "\u308b": 1}
多数から成る
{ "character_count": 6, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'rugous' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"r": 1, "u": 2, "g": 1, "o": 1, "s": 1}
rugous
{ "character_count": 6, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'meekling' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"m": 1, "e": 2, "k": 1, "l": 1, "i": 1, "n": 1, "g": 1}
meekling
{ "character_count": 8, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'hydrome' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"h": 1, "y": 1, "d": 1, "r": 1, "o": 1, "m": 1, "e": 1}
hydrome
{ "character_count": 7, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'lacune' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"l": 1, "a": 1, "c": 1, "u": 1, "n": 1, "e": 1}
lacune
{ "character_count": 6, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'некрофил' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u043d": 1, "\u0435": 1, "\u043a": 1, "\u0440": 1, "\u043e": 1, "\u0444": 1, "\u0438": 1, "\u043b": 1}
некрофил
{ "character_count": 8, "difficulty": 7, "language": "russian" }
Count the number of occurrences of each character in the word 'セミプロの' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30bb": 1, "\u30df": 1, "\u30d7": 1, "\u30ed": 1, "\u306e": 1}
セミプロの
{ "character_count": 5, "difficulty": 2, "language": "japanese" }
Count the number of occurrences of each character in the word 'Симеон' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0421": 1, "\u0438": 1, "\u043c": 1, "\u0435": 1, "\u043e": 1, "\u043d": 1}
Симеон
{ "character_count": 6, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word 'heroicness' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"h": 1, "e": 2, "r": 1, "o": 1, "i": 1, "c": 1, "n": 1, "s": 2}
heroicness
{ "character_count": 10, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word '治疗法' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u6cbb": 1, "\u7597": 1, "\u6cd5": 1}
治疗法
{ "character_count": 3, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'triradiate' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 2, "r": 2, "i": 2, "a": 2, "d": 1, "e": 1}
triradiate
{ "character_count": 10, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'カゲロウ' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30ab": 1, "\u30b2": 1, "\u30ed": 1, "\u30a6": 1}
カゲロウ
{ "character_count": 4, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'spondylous' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"s": 2, "p": 1, "o": 2, "n": 1, "d": 1, "y": 1, "l": 1, "u": 1}
spondylous
{ "character_count": 10, "difficulty": 8, "language": "chinese" }
Count the number of occurrences of each character in the word 'earing' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"e": 1, "a": 1, "r": 1, "i": 1, "n": 1, "g": 1}
earing
{ "character_count": 6, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'पकड़ा' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u092a": 1, "\u0915": 1, "\u0921": 1, "\u093c": 1, "\u093e": 1}
पकड़ा
{ "character_count": 5, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word '记时器' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u8bb0": 1, "\u65f6": 1, "\u5668": 1}
记时器
{ "character_count": 3, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'fishful' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"f": 2, "i": 1, "s": 1, "h": 1, "u": 1, "l": 1}
fishful
{ "character_count": 7, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'ギンザケ' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30ae": 1, "\u30f3": 1, "\u30b6": 1, "\u30b1": 1}
ギンザケ
{ "character_count": 4, "difficulty": 2, "language": "japanese" }
Count the number of occurrences of each character in the word 'furler' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"f": 1, "u": 1, "r": 2, "l": 1, "e": 1}
furler
{ "character_count": 6, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'pseudepigraphic' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"p": 3, "s": 1, "e": 2, "u": 1, "d": 1, "i": 2, "g": 1, "r": 1, "a": 1, "h": 1, "c": 1}
pseudepigraphic
{ "character_count": 15, "difficulty": 10, "language": "english" }
Count the number of occurrences of each character in the word 'unflustered' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"u": 2, "n": 1, "f": 1, "l": 1, "s": 1, "t": 1, "e": 2, "r": 1, "d": 1}
unflustered
{ "character_count": 11, "difficulty": 4, "language": "english" }
Count the number of occurrences of each character in the word 'निर्वसीयतता' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0928": 1, "\u093f": 1, "\u0930": 1, "\u094d": 1, "\u0935": 1, "\u0938": 1, "\u0940": 1, "\u092f": 1, "\u0924": 2, "\u093e": 1}
निर्वसीयतता
{ "character_count": 11, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'ヘアピン' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30d8": 1, "\u30a2": 1, "\u30d4": 1, "\u30f3": 1}
ヘアピン
{ "character_count": 4, "difficulty": 2, "language": "japanese" }
Count the number of occurrences of each character in the word 'eleutheromania' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"e": 3, "l": 1, "u": 1, "t": 1, "h": 1, "r": 1, "o": 1, "m": 1, "a": 2, "n": 1, "i": 1}
eleutheromania
{ "character_count": 14, "difficulty": 10, "language": "japanese" }
Count the number of occurrences of each character in the word 'tentmaking' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 2, "e": 1, "n": 2, "m": 1, "a": 1, "k": 1, "i": 1, "g": 1}
tentmaking
{ "character_count": 10, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'diathermous' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"d": 1, "i": 1, "a": 1, "t": 1, "h": 1, "e": 1, "r": 1, "m": 1, "o": 1, "u": 1, "s": 1}
diathermous
{ "character_count": 11, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'armrest' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"a": 1, "r": 2, "m": 1, "e": 1, "s": 1, "t": 1}
armrest
{ "character_count": 7, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'divorcer' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"d": 1, "i": 1, "v": 1, "o": 1, "r": 2, "c": 1, "e": 1}
divorcer
{ "character_count": 8, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'limberly' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"l": 2, "i": 1, "m": 1, "b": 1, "e": 1, "r": 1, "y": 1}
limberly
{ "character_count": 8, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word '吸収力' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u5438": 1, "\u53ce": 1, "\u529b": 1}
吸収力
{ "character_count": 3, "difficulty": 8, "language": "japanese" }
Count the number of occurrences of each character in the word 'echoless' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"e": 2, "c": 1, "h": 1, "o": 1, "l": 1, "s": 2}
echoless
{ "character_count": 8, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'crosshackle' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"c": 2, "r": 1, "o": 1, "s": 2, "h": 1, "a": 1, "k": 1, "l": 1, "e": 1}
crosshackle
{ "character_count": 11, "difficulty": 8, "language": "english" }