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 '食人族' 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.
{"\u98df": 1, "\u4eba": 1, "\u65cf": 1}
食人族
{ "character_count": 3, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'topply' 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, "o": 1, "p": 2, "l": 1, "y": 1}
topply
{ "character_count": 6, "difficulty": 2, "language": "english" }
Count the number of occurrences of each character in the word 'cantrip' 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": 1, "n": 1, "t": 1, "r": 1, "i": 1, "p": 1}
cantrip
{ "character_count": 7, "difficulty": 2, "language": "hindi" }
Count the number of occurrences of each character in the word 'indicible' 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, "n": 1, "d": 1, "c": 1, "b": 1, "l": 1, "e": 1}
indicible
{ "character_count": 9, "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.
{"\u8aac": 1, "\u660e": 1, "\u306e": 1, "\u3064": 1, "\u304b": 1, "\u306a": 1, "\u3044": 1}
説明のつかない
{ "character_count": 7, "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.
{"\u0434": 1, "\u0435": 1, "\u043b": 1, "\u043e": 1}
дело
{ "character_count": 4, "difficulty": 2, "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.
{"\u0441": 1, "\u0435": 1, "\u043c": 1, "\u0438": 2, "\u043e": 1, "\u0442": 1, "\u043a": 1, "\u0430": 1}
семиотика
{ "character_count": 9, "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.
{"\u043d": 1, "\u0435": 1, "\u0434": 1, "\u043e": 3, "\u0432": 2, "\u043b": 1, "\u044c": 1, "\u0441": 1, "\u0442": 1}
недовольство
{ "character_count": 12, "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.
{"\u518d": 1, "\u627f": 1, "\u8a8d": 1}
再承認
{ "character_count": 3, "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.
{"\u7f13": 1, "\u6162": 1, "\u7684": 1}
缓慢的
{ "character_count": 3, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'guilefulness' 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.
{"g": 1, "u": 2, "i": 1, "l": 2, "e": 2, "f": 1, "n": 1, "s": 2}
guilefulness
{ "character_count": 12, "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.
{"\u6d6a": 1, "\u8d39": 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.
{"\u092a": 1, "\u0941": 1, "\u091a": 1, "\u094d": 1, "\u091b": 1}
पुच्छ
{ "character_count": 5, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'chirograph' 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, "h": 2, "i": 1, "r": 2, "o": 1, "g": 1, "a": 1, "p": 1}
chirograph
{ "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.
{"\u30e9": 2, "\u30e1": 1}
ラメラ
{ "character_count": 3, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'hologamy' 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": 2, "l": 1, "g": 1, "a": 1, "m": 1, "y": 1}
hologamy
{ "character_count": 8, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'shaster' 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, "h": 1, "a": 1, "t": 1, "e": 1, "r": 1}
shaster
{ "character_count": 7, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'expedition' 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, "x": 1, "p": 1, "d": 1, "i": 2, "t": 1, "o": 1, "n": 1}
expedition
{ "character_count": 10, "difficulty": 3, "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.
{"\u6807": 1, "\u67aa": 1}
标枪
{ "character_count": 2, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'horoscopist' 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": 3, "r": 1, "s": 2, "c": 1, "p": 1, "i": 1, "t": 1}
horoscopist
{ "character_count": 11, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'nonmunicipal' 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, "m": 1, "u": 1, "i": 2, "c": 1, "p": 1, "a": 1, "l": 1}
nonmunicipal
{ "character_count": 12, "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.
{"\u610f": 1, "\u8c61": 1}
意象
{ "character_count": 2, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'chasuble' 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, "h": 1, "a": 1, "s": 1, "u": 1, "b": 1, "l": 1, "e": 1}
chasuble
{ "character_count": 8, "difficulty": 6, "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, "\u091f": 1, "\u094b": 1, "\u0915": 1, "\u0930": 1}
स्टोकर
{ "character_count": 6, "difficulty": 4, "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.
{"\u6c34": 1, "\u571f": 1, "\u4e0d": 1, "\u670d": 1}
水土不服
{ "character_count": 4, "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.
{"\u043a": 2, "\u0430": 1}
как
{ "character_count": 3, "difficulty": 2, "language": "russian" }
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": 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.
{"\u30dc": 1, "\u30fc": 1, "\u30cc": 1}
ボーヌ
{ "character_count": 3, "difficulty": 2, "language": "japanese" }
Count the number of occurrences of each character in the word 'cytotaxis' 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, "y": 1, "t": 2, "o": 1, "a": 1, "x": 1, "i": 1, "s": 1}
cytotaxis
{ "character_count": 9, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'vandalism' 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.
{"v": 1, "a": 2, "n": 1, "d": 1, "l": 1, "i": 1, "s": 1, "m": 1}
vandalism
{ "character_count": 9, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'rasure' 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": 2, "a": 1, "s": 1, "u": 1, "e": 1}
rasure
{ "character_count": 6, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'predelineation' 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": 3, "d": 1, "l": 1, "i": 2, "n": 2, "a": 1, "t": 1, "o": 1}
predelineation
{ "character_count": 14, "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.
{"\u9ad8": 1, "\u7684": 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.
{"\u092a": 1, "\u094d": 1, "\u0930": 1, "\u093e": 1, "\u092f": 1, "\u094b": 1, "\u091c": 1, "\u0915": 1}
प्रायोजक
{ "character_count": 8, "difficulty": 4, "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.
{"\u624b": 1, "\u5199": 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.
{"\u6c34": 1, "\u714e": 1}
水煎
{ "character_count": 2, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'diapsid' 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, "i": 2, "a": 1, "p": 1, "s": 1}
diapsid
{ "character_count": 7, "difficulty": 6, "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.
{"\u4e0d": 1, "\u53ef": 1, "\u89e3": 1}
不可解
{ "character_count": 3, "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.
{"\u30b8": 1, "\u30f3": 1, "\u30d0": 1, "\u30eb": 1}
ジンバル
{ "character_count": 4, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'shabble' 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, "h": 1, "a": 1, "b": 2, "l": 1, "e": 1}
shabble
{ "character_count": 7, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'mycelium' 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, "y": 1, "c": 1, "e": 1, "l": 1, "i": 1, "u": 1}
mycelium
{ "character_count": 8, "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.
{"\u9cd7": 1}
{ "character_count": 1, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'mercurialness' 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, "r": 2, "c": 1, "u": 1, "i": 1, "a": 1, "l": 1, "n": 1, "s": 2}
mercurialness
{ "character_count": 13, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'mucilaginousness' 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, "u": 2, "c": 1, "i": 2, "l": 1, "a": 1, "g": 1, "n": 2, "o": 1, "s": 3, "e": 1}
mucilaginousness
{ "character_count": 16, "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.
{"\u0441": 1, "\u043a": 1, "\u0443": 1, "\u0447": 1, "\u043d": 1, "\u044b": 1, "\u0439": 1}
скучный
{ "character_count": 7, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word 'nauseousness' 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": 2, "a": 1, "u": 2, "s": 4, "e": 2, "o": 1}
nauseousness
{ "character_count": 12, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'rhamphoid' 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": 2, "a": 1, "m": 1, "p": 1, "o": 1, "i": 1, "d": 1}
rhamphoid
{ "character_count": 9, "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.
{"\u043e": 1, "\u0442": 1, "\u0435": 2, "\u0447": 1, "\u0441": 1, "\u043a": 1, "\u0438": 1}
отечески
{ "character_count": 8, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'endameba' 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, "n": 1, "d": 1, "a": 2, "m": 1, "b": 1}
endameba
{ "character_count": 8, "difficulty": 8, "language": "chinese" }
Count the number of occurrences of each character in the word 'witheredness' 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.
{"w": 1, "i": 1, "t": 1, "h": 1, "e": 3, "r": 1, "d": 1, "n": 1, "s": 2}
witheredness
{ "character_count": 12, "difficulty": 6, "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.
{"\u9f3b": 1}
{ "character_count": 1, "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.
{"\u0939": 1, "\u093e": 1, "\u0930": 1}
हार
{ "character_count": 3, "difficulty": 2, "language": "hindi" }
Count the number of occurrences of each character in the word 'ommatophore' 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, "m": 2, "a": 1, "t": 1, "p": 1, "h": 1, "r": 1, "e": 1}
ommatophore
{ "character_count": 11, "difficulty": 8, "language": "hindi" }
Count the number of occurrences of each character in the word 'dichroitic' 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": 3, "c": 2, "h": 1, "r": 1, "o": 1, "t": 1}
dichroitic
{ "character_count": 10, "difficulty": 8, "language": "chinese" }
Count the number of occurrences of each character in the word 'myotic' 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, "y": 1, "o": 1, "t": 1, "i": 1, "c": 1}
myotic
{ "character_count": 6, "difficulty": 3, "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.
{"\u6e38": 1, "\u6cf3": 1}
游泳
{ "character_count": 2, "difficulty": 4, "language": "chinese" }
Count the number of occurrences of each character in the word 'bespout' 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, "e": 1, "s": 1, "p": 1, "o": 1, "u": 1, "t": 1}
bespout
{ "character_count": 7, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'matriarchy' 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, "a": 2, "t": 1, "r": 2, "i": 1, "c": 1, "h": 1, "y": 1}
matriarchy
{ "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.
{"\u51b7": 1, "\u9177": 1, "\u306a": 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.
{"\u72ac": 1, "\u306e": 1, "\u3088": 1, "\u3046": 1, "\u306a": 1}
犬のような
{ "character_count": 5, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'bronchiolus' 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, "o": 2, "n": 1, "c": 1, "h": 1, "i": 1, "l": 1, "u": 1, "s": 1}
bronchiolus
{ "character_count": 11, "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.
{"\u9a6c": 1, "\u5c3c": 1, "\u62c9": 1}
马尼拉
{ "character_count": 3, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'semiservile' 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, "e": 3, "m": 1, "i": 2, "r": 1, "v": 1, "l": 1}
semiservile
{ "character_count": 11, "difficulty": 6, "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.
{"\u4ea7": 1, "\u70ed": 1}
产热
{ "character_count": 2, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'vility' 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.
{"v": 1, "i": 2, "l": 1, "t": 1, "y": 1}
vility
{ "character_count": 6, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'musicalize' 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, "u": 1, "s": 1, "i": 2, "c": 1, "a": 1, "l": 1, "z": 1, "e": 1}
musicalize
{ "character_count": 10, "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.
{"\u98df": 1, "\u7269": 1, "\u7814": 1, "\u78e8": 1, "\u673a": 1}
食物研磨机
{ "character_count": 5, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'nonearning' 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": 4, "o": 1, "e": 1, "a": 1, "r": 1, "i": 1, "g": 1}
nonearning
{ "character_count": 10, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'abaser' 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": 2, "b": 1, "s": 1, "e": 1, "r": 1}
abaser
{ "character_count": 6, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'impressure' 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, "m": 1, "p": 1, "r": 2, "e": 2, "s": 2, "u": 1}
impressure
{ "character_count": 10, "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.
{"\u092a": 1, "\u0941": 1, "\u0930": 1, "\u093e": 1, "\u0928": 1, "\u0947": 1}
पुराने
{ "character_count": 6, "difficulty": 2, "language": "hindi" }
Count the number of occurrences of each character in the word 'reflectional' 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, "e": 2, "f": 1, "l": 2, "c": 1, "t": 1, "i": 1, "o": 1, "n": 1, "a": 1}
reflectional
{ "character_count": 12, "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.
{"\u30b1": 1, "\u30a4": 1, "\u9178": 1, "\u4e9c": 1, "\u925b": 1, "\u9271": 1}
ケイ酸亜鉛鉱
{ "character_count": 6, "difficulty": 8, "language": "japanese" }
Count the number of occurrences of each character in the word 'Bloop' 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, "l": 1, "o": 2, "p": 1}
Bloop
{ "character_count": 5, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word 'nonrational' 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, "r": 1, "a": 2, "t": 1, "i": 1, "l": 1}
nonrational
{ "character_count": 11, "difficulty": 3, "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.
{"\u0433": 1, "\u043e": 4, "\u043b": 2, "\u0432": 1, "\u043c": 1, "\u043a": 1, "\u0430": 1}
головоломка
{ "character_count": 11, "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.
{"\u0924": 1, "\u0939": 1, "\u0926": 1, "\u093e": 1, "\u0930": 1}
तहदार
{ "character_count": 5, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'tamarao' 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, "a": 3, "m": 1, "r": 1, "o": 1}
tamarao
{ "character_count": 7, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'cipolin' 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, "i": 2, "p": 1, "o": 1, "l": 1, "n": 1}
cipolin
{ "character_count": 7, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'marrowish' 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, "a": 1, "r": 2, "o": 1, "w": 1, "i": 1, "s": 1, "h": 1}
marrowish
{ "character_count": 9, "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.
{"\u590d": 1, "\u5411": 1, "\u659c": 1}
复向斜
{ "character_count": 3, "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.
{"\u043c": 1, "\u0430": 3, "\u0440": 1, "\u0438": 1, "\u0445": 1, "\u0443": 1, "\u043d": 1}
марихуана
{ "character_count": 9, "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.
{"\u0433": 1, "\u043e": 4, "\u043b": 1, "\u0432": 1, "\u043d": 1, "\u0439": 1, " ": 1, "\u0443": 1, "\u0431": 1, "\u0440": 1}
головной убор
{ "character_count": 13, "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.
{"\u043e": 1, "\u0442": 1, " ": 1, "\u0440": 1, "\u0443": 1, "\u043a": 1, "\u0438": 1}
от руки
{ "character_count": 7, "difficulty": 2, "language": "russian" }
Count the number of occurrences of each character in the word 'Hadean' 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": 2, "d": 1, "e": 1, "n": 1}
Hadean
{ "character_count": 6, "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.
{"\u4e0d": 1, "\u5909": 1, "\u306b": 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.
{"\u0926": 1, "\u093f": 1, "\u0928": 1}
दिन
{ "character_count": 3, "difficulty": 1, "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.
{"\u0928": 1, "\u0915": 2, "\u093e": 3, "\u0930": 1, "\u0924": 2, "\u094d": 1, "\u092e": 1}
नकारात्मकता
{ "character_count": 11, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'cacophonically' 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": 3, "a": 2, "o": 2, "p": 1, "h": 1, "n": 1, "i": 1, "l": 2, "y": 1}
cacophonically
{ "character_count": 14, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'proctodaeum' 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, "o": 2, "c": 1, "t": 1, "d": 1, "a": 1, "e": 1, "u": 1, "m": 1}
proctodaeum
{ "character_count": 11, "difficulty": 8, "language": "chinese" }
Count the number of occurrences of each character in the word 'Pontederia' 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, "o": 1, "n": 1, "t": 1, "e": 2, "d": 1, "r": 1, "i": 1, "a": 1}
Pontederia
{ "character_count": 10, "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.
{"\u88dc": 1, "\u5145": 1, "\u3059": 1, "\u308b": 1}
補充する
{ "character_count": 4, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'shiningness' 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": 3, "h": 1, "i": 2, "n": 3, "g": 1, "e": 1}
shiningness
{ "character_count": 11, "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.
{"\u0441": 1, "\u0435": 2, "\u043b": 1, "\u043a": 1, "\u0442": 1, "\u043e": 1, "\u0440": 1}
селектор
{ "character_count": 8, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word 'enjoyableness' 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, "n": 2, "j": 1, "o": 1, "y": 1, "a": 1, "b": 1, "l": 1, "s": 2}
enjoyableness
{ "character_count": 13, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'tubulifloral' 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, "u": 2, "b": 1, "l": 3, "i": 1, "f": 1, "o": 1, "r": 1, "a": 1}
tubulifloral
{ "character_count": 12, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'reshoe' 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, "e": 2, "s": 1, "h": 1, "o": 1}
reshoe
{ "character_count": 6, "difficulty": 1, "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.
{"\u5e7f": 1, "\u9614": 1}
广阔
{ "character_count": 2, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'thrummy' 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": 1, "r": 1, "u": 1, "m": 2, "y": 1}
thrummy
{ "character_count": 7, "difficulty": 1, "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.
{"\u30d8": 1, "\u30e9": 1, "\u30af": 1, "\u30ec": 1, "\u30b9": 1}
ヘラクレス
{ "character_count": 5, "difficulty": 3, "language": "japanese" }