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 'tusche' 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": 1, "s": 1, "c": 1, "h": 1, "e": 1}
tusche
{ "character_count": 6, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'unrhythmic' 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": 1, "n": 1, "r": 1, "h": 2, "y": 1, "t": 1, "m": 1, "i": 1, "c": 1}
unrhythmic
{ "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.
{"\u816b": 1, "\u760d": 1, "\u6027": 1, "\u306e": 1}
腫瘍性の
{ "character_count": 4, "difficulty": 8, "language": "japanese" }
Count the number of occurrences of each character in the word 'chorographer' 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, "o": 2, "r": 3, "g": 1, "a": 1, "p": 1, "e": 1}
chorographer
{ "character_count": 12, "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.
{"\u4f69": 1, "\u79d1": 1, "\u7279": 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.
{"\u62a5": 1, "\u6625": 1, "\u82b1": 1}
报春花
{ "character_count": 3, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'obligatorily' 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": 2, "b": 1, "l": 2, "i": 2, "g": 1, "a": 1, "t": 1, "r": 1, "y": 1}
obligatorily
{ "character_count": 12, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'contactual' 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": 1, "t": 2, "a": 2, "u": 1, "l": 1}
contactual
{ "character_count": 10, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'danglingly' 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, "a": 1, "n": 2, "g": 2, "l": 2, "i": 1, "y": 1}
danglingly
{ "character_count": 10, "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.
{"\u5f62": 1, "\u8c61": 1}
形象
{ "character_count": 2, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'distributional' 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, "s": 1, "t": 2, "r": 1, "b": 1, "u": 1, "o": 1, "n": 1, "a": 1, "l": 1}
distributional
{ "character_count": 14, "difficulty": 6, "language": "english" }
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": 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": 3, "\u0434": 1, "\u043d": 3, "\u0432": 1, "\u0440": 1, "\u0435": 2, "\u043c": 1, "\u0441": 1, "\u0442": 1, "\u044c": 1}
одновременность
{ "character_count": 15, "difficulty": 7, "language": "russian" }
Count the number of occurrences of each character in the word 'overabundant' 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": 1, "v": 1, "e": 1, "r": 1, "a": 2, "b": 1, "u": 1, "n": 2, "d": 1, "t": 1}
overabundant
{ "character_count": 12, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'cosmogonic' 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": 3, "s": 1, "m": 1, "g": 1, "n": 1, "i": 1}
cosmogonic
{ "character_count": 10, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'preventively' 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, "v": 2, "n": 1, "t": 1, "i": 1, "l": 1, "y": 1}
preventively
{ "character_count": 12, "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.
{"\u8f66": 1, "\u5934": 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.
{"\u51a5": 1, "\u53e4": 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.
{"\u53ef": 1, "\u80fd": 1, "\u7684": 1}
可能的
{ "character_count": 3, "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.
{"\u69cb": 1, "\u6587": 1, "\u7684": 1, "\u306b": 1, "\u306f": 1}
構文的には
{ "character_count": 5, "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.
{"\u043b": 1, "\u044e": 1, "\u0431": 1, "\u0435": 1, "\u0437": 1, "\u043d": 1, "\u043e": 1}
любезно
{ "character_count": 7, "difficulty": 4, "language": "russian" }
Count the number of occurrences of each character in the word 'wastrife' 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, "a": 1, "s": 1, "t": 1, "r": 1, "i": 1, "f": 1, "e": 1}
wastrife
{ "character_count": 8, "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.
{"\u66b4": 1, "\u5229": 1, "\u3092": 1, "\u8caa": 1, "\u308b": 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.
{"\u043c": 2, "\u0435": 2, "\u0441": 1, "\u0440": 2, "\u0438": 1, "\u0437": 1, "\u0430": 1, "\u0442": 1, "\u043e": 1}
месмеризатор
{ "character_count": 12, "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.
{"\u7f8e": 1, "\u4e3d": 1}
美丽
{ "character_count": 2, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'unformularize' 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, "o": 1, "r": 2, "m": 1, "l": 1, "a": 1, "i": 1, "z": 1, "e": 1}
unformularize
{ "character_count": 13, "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.
{"\u7121": 1, "\u907a": 1, "\u8a00": 1, "\u6b7b": 1, "\u4ea1": 1}
無遺言死亡
{ "character_count": 5, "difficulty": 8, "language": "japanese" }
Count the number of occurrences of each character in the word 'posttoxic' 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": 2, "s": 1, "t": 2, "x": 1, "i": 1, "c": 1}
posttoxic
{ "character_count": 9, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'overcivilization' 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": 2, "v": 2, "e": 1, "r": 1, "c": 1, "i": 4, "l": 1, "z": 1, "a": 1, "t": 1, "n": 1}
overcivilization
{ "character_count": 16, "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.
{"\u30b8": 1, "\u30a7": 1, "\u30a4": 1, "\u30f3": 1}
ジェイン
{ "character_count": 4, "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.
{"\u30b7": 1, "\u30e1": 1, "\u30aa": 1, "\u30f3": 1}
シメオン
{ "character_count": 4, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'thriveless' 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, "i": 1, "v": 1, "e": 2, "l": 1, "s": 2}
thriveless
{ "character_count": 10, "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.
{"\u092e": 1, "\u091c": 1, "\u093e": 1, "\u0915": 1}
मजाक
{ "character_count": 4, "difficulty": 2, "language": "hindi" }
Count the number of occurrences of each character in the word 'tringle' 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, "r": 1, "i": 1, "n": 1, "g": 1, "l": 1, "e": 1}
tringle
{ "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.
{"\u043f": 1, "\u0438": 2, "\u043d": 1, "\u0442": 1, "\u043e": 1, "\u043b": 1}
пинитол
{ "character_count": 7, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word 'ARGAL' 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, "R": 1, "G": 1, "L": 1}
ARGAL
{ "character_count": 5, "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.
{"\u30e8": 1, "\u30bf": 1, "\u30ab": 1}
ヨタカ
{ "character_count": 3, "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.
{"\u043c": 1, "\u0430": 1, "\u043b": 1, "\u0435": 1, "\u043d": 1, "\u044c": 1, "\u043a": 1, "\u0438": 1, "\u0439": 1}
маленький
{ "character_count": 9, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word 'metempiric' 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, "e": 2, "t": 1, "p": 1, "i": 2, "r": 1, "c": 1}
metempiric
{ "character_count": 10, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'locksmithery' 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, "o": 1, "c": 1, "k": 1, "s": 1, "m": 1, "i": 1, "t": 1, "h": 1, "e": 1, "r": 1, "y": 1}
locksmithery
{ "character_count": 12, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'sirrah' 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, "i": 1, "r": 2, "a": 1, "h": 1}
sirrah
{ "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.
{"\u30af": 1, "\u30ea": 1, "\u30b9": 1, "\u30c6": 1, "\u30a3": 1, "\u30fc": 1, "\u30ca": 1}
クリスティーナ
{ "character_count": 7, "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.
{"\u091b": 1, "\u093f": 1, "\u092a": 1, "\u0915": 1, "\u0932": 1, "\u0940": 1}
छिपकली
{ "character_count": 6, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'shophar' 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": 2, "o": 1, "p": 1, "a": 1, "r": 1}
shophar
{ "character_count": 7, "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.
{"\u0430": 3, "\u0433": 1, "\u043b": 2, "\u044c": 1, "\u043c": 1, "\u0442": 2, "\u043e": 1, "\u0438": 1}
агальматолит
{ "character_count": 12, "difficulty": 7, "language": "russian" }
Count the number of occurrences of each character in the word 'xyridaceous' 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.
{"x": 1, "y": 1, "r": 1, "i": 1, "d": 1, "a": 1, "c": 1, "e": 1, "o": 1, "u": 1, "s": 1}
xyridaceous
{ "character_count": 11, "difficulty": 8, "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.
{"\u0434": 1, "\u0435": 3, "\u0433": 1, "\u0440": 1, "\u0441": 2, "\u0438": 1, "\u0432": 1, "\u043d": 1, "\u043e": 1}
дегрессивное
{ "character_count": 12, "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.
{"\u6027": 1, "\u6b32": 1}
性欲
{ "character_count": 2, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'saunteringly' 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, "a": 1, "u": 1, "n": 2, "t": 1, "e": 1, "r": 1, "i": 1, "g": 1, "l": 1, "y": 1}
saunteringly
{ "character_count": 12, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'pastness' 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, "a": 1, "s": 3, "t": 1, "n": 1, "e": 1}
pastness
{ "character_count": 8, "difficulty": 1, "language": "hindi" }
Count the number of occurrences of each character in the word 'ceremonialize' 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, "e": 3, "r": 1, "m": 1, "o": 1, "n": 1, "i": 2, "a": 1, "l": 1, "z": 1}
ceremonialize
{ "character_count": 13, "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.
{"\u975e": 1, "\u86cd": 1, "\u5149": 1, "\u6027": 1, "\u306e": 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.
{"\u8ba1": 1, "\u6b65": 1, "\u5668": 1}
计步器
{ "character_count": 3, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'pleiomery' 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, "l": 1, "e": 2, "i": 1, "o": 1, "m": 1, "r": 1, "y": 1}
pleiomery
{ "character_count": 9, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'preceptorship' 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, "r": 2, "e": 2, "c": 1, "t": 1, "o": 1, "s": 1, "h": 1, "i": 1}
preceptorship
{ "character_count": 13, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'rejuvenescent' 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": 4, "j": 1, "u": 1, "v": 1, "n": 2, "s": 1, "c": 1, "t": 1}
rejuvenescent
{ "character_count": 13, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'locksmithery' 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, "o": 1, "c": 1, "k": 1, "s": 1, "m": 1, "i": 1, "t": 1, "h": 1, "e": 1, "r": 1, "y": 1}
locksmithery
{ "character_count": 12, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'Deathlike' 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, "a": 1, "t": 1, "h": 1, "l": 1, "i": 1, "k": 1}
Deathlike
{ "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.
{"\u043e": 1, "\u0442": 1, "\u0432": 1, "\u0430": 1, "\u0440": 1}
отвар
{ "character_count": 5, "difficulty": 2, "language": "russian" }
Count the number of occurrences of each character in the word 'syncretistic' 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, "y": 1, "n": 1, "c": 2, "r": 1, "e": 1, "t": 2, "i": 2}
syncretistic
{ "character_count": 12, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'unaidedly' 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": 1, "n": 1, "a": 1, "i": 1, "d": 2, "e": 1, "l": 1, "y": 1}
unaidedly
{ "character_count": 9, "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.
{"\u3069": 1, "\u3063": 1, "\u3068": 2, "\u62bc": 1, "\u3057": 1, "\u5bc4": 1, "\u305b": 1, "\u308b": 1, "\u3053": 1}
どっと押し寄せること
{ "character_count": 10, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'deportable' 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, "p": 1, "o": 1, "r": 1, "t": 1, "a": 1, "b": 1, "l": 1}
deportable
{ "character_count": 10, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'euhemeristic' 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, "u": 1, "h": 1, "m": 1, "r": 1, "i": 2, "s": 1, "t": 1, "c": 1}
euhemeristic
{ "character_count": 12, "difficulty": 8, "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.
{"\u975e": 1, "\u7269": 1, "\u8cea": 1, "\u7684": 1, "\u306a": 1}
非物質的な
{ "character_count": 5, "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.
{"\u091c": 1, "\u0940": 1, " ": 1, "\u092c": 1, "\u0939": 1, "\u0932": 2, "\u093e": 3, "\u0928": 1, "\u0947": 1, "\u0935": 1}
जी बहलानेवाला
{ "character_count": 13, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'unsuffered' 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, "s": 1, "f": 2, "e": 2, "r": 1, "d": 1}
unsuffered
{ "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.
{"\u96c7": 1, "\u7528": 1}
雇用
{ "character_count": 2, "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.
{"\u043e": 1, "\u0433": 1, "\u0440": 1, "\u0430": 2, "\u043d": 1, "\u0438": 3, "\u0447": 1, "\u0432": 1, "\u044e": 1, "\u0449": 1, "\u0435": 1}
ограничивающие
{ "character_count": 14, "difficulty": 7, "language": "russian" }
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": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'heliometrically' 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, "l": 3, "i": 2, "o": 1, "m": 1, "t": 1, "r": 1, "c": 1, "a": 1, "y": 1}
heliometrically
{ "character_count": 15, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'umbilication' 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": 1, "m": 1, "b": 1, "i": 3, "l": 1, "c": 1, "a": 1, "t": 1, "o": 1, "n": 1}
umbilication
{ "character_count": 12, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'unexemplified' 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": 1, "n": 1, "e": 3, "x": 1, "m": 1, "p": 1, "l": 1, "i": 2, "f": 1, "d": 1}
unexemplified
{ "character_count": 13, "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.
{"\u30a2": 1, "\u30f3": 2, "\u30c0": 1, "\u30fc": 1, "\u30bd": 1}
アンダーソン
{ "character_count": 6, "difficulty": 2, "language": "japanese" }
Count the number of occurrences of each character in the word 'hemihedrism' 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": 2, "e": 2, "m": 2, "i": 2, "d": 1, "r": 1, "s": 1}
hemihedrism
{ "character_count": 11, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'frizziness' 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, "r": 1, "i": 2, "z": 2, "n": 1, "e": 1, "s": 2}
frizziness
{ "character_count": 10, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'visitress' 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, "s": 3, "t": 1, "r": 1, "e": 1}
visitress
{ "character_count": 9, "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.
{"\u5feb": 1, "\u4e50": 1, "\u7684": 1}
快乐的
{ "character_count": 3, "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.
{"\u043b": 1, "\u0438": 2, "\u0433": 1}
лиги
{ "character_count": 4, "difficulty": 2, "language": "russian" }
Count the number of occurrences of each character in the word 'carpology' 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, "r": 1, "p": 1, "o": 2, "l": 1, "g": 1, "y": 1}
carpology
{ "character_count": 9, "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.
{"\u0431": 1, "\u0430": 1, "\u043d": 1, "\u0434": 1, "\u0438": 1, "\u0442": 1, "\u0441": 1, "\u043a": 1, "\u043e": 1, "\u0439": 1}
бандитской
{ "character_count": 10, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'HALVER' 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": 1, "V": 1, "E": 1, "R": 1}
HALVER
{ "character_count": 6, "difficulty": 2, "language": "hindi" }
Count the number of occurrences of each character in the word 'homolegalis' 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, "m": 1, "l": 2, "e": 1, "g": 1, "a": 1, "i": 1, "s": 1}
homolegalis
{ "character_count": 11, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'headstock' 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": 1, "a": 1, "d": 1, "s": 1, "t": 1, "o": 1, "c": 1, "k": 1}
headstock
{ "character_count": 9, "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.
{"\u5f31": 1, "\u3044": 1}
弱い
{ "character_count": 2, "difficulty": 3, "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": "hindi" }
Count the number of occurrences of each character in the word 'funneled' 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, "n": 2, "e": 2, "l": 1, "d": 1}
funneled
{ "character_count": 8, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'semiape' 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, "e": 2, "m": 1, "i": 1, "a": 1, "p": 1}
semiape
{ "character_count": 7, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'magistratical' 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": 3, "g": 1, "i": 2, "s": 1, "t": 2, "r": 1, "c": 1, "l": 1}
magistratical
{ "character_count": 13, "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.
{"\u56de": 1, "\u5fa9": 1, "\u4e0d": 1, "\u80fd": 1}
回復不能
{ "character_count": 4, "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.
{"\u8fd9": 1, "\u4f4d": 1, "\u7cbe": 1, "\u7075": 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.
{"\u0441": 2, "\u043b": 2, "\u0435": 3, "\u0430": 1, "\u0440": 1, "\u043d": 1, "\u043e": 2, " ": 1, "\u0434": 1}
слесарное дело
{ "character_count": 14, "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.
{"\u5df4": 1, "\u8fea": 1}
巴迪
{ "character_count": 2, "difficulty": 2, "language": "chinese" }
Count the number of occurrences of each character in the word 'burgage' 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, "u": 1, "r": 1, "g": 2, "a": 1, "e": 1}
burgage
{ "character_count": 7, "difficulty": 8, "language": "russian" }
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": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'callithump' 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, "l": 2, "i": 1, "t": 1, "h": 1, "u": 1, "m": 1, "p": 1}
callithump
{ "character_count": 10, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'weatherer' 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, "e": 3, "a": 1, "t": 1, "h": 1, "r": 2}
weatherer
{ "character_count": 9, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word '消耗(waisting)' 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.
{"\u6d88": 1, "\u8017": 1, "\uff08": 1, "w": 1, "a": 1, "i": 2, "s": 1, "t": 1, "n": 1, "g": 1, "\uff09": 1}
消耗(waisting)
{ "character_count": 12, "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.
{"\u5706": 1, "\u5f62": 1, "\u6807": 1, "\u5fd7": 1}
圆形标志
{ "character_count": 4, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'jargonic' 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.
{"j": 1, "a": 1, "r": 1, "g": 1, "o": 1, "n": 1, "i": 1, "c": 1}
jargonic
{ "character_count": 8, "difficulty": 4, "language": "english" }