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.
|
{"\u840e": 1, "\u7e2e": 1}
|
萎縮
|
{
"character_count": 2,
"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.
|
{"\u0432": 1, "\u043b": 1, "\u0430": 1, "\u0441": 1, "\u0442": 1, "\u043d": 1, "\u044b": 1, "\u0439": 1}
|
властный
|
{
"character_count": 8,
"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.
|
{"\u8001": 1, "\u6709": 1, "\u6240": 1, "\u4e3a": 1}
|
老有所为
|
{
"character_count": 4,
"difficulty": 3,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'bermudite' and return the 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": 2, "r": 1, "m": 1, "u": 1, "d": 1, "i": 1, "t": 1}
|
bermudite
|
{
"character_count": 9,
"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.
|
{"\u043c": 1, "\u0438": 1, "\u0434": 1, "\u0435": 2, "\u043b": 1}
|
миделе
|
{
"character_count": 6,
"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.
|
{"\u6293": 1}
|
抓
|
{
"character_count": 1,
"difficulty": 3,
"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": 5,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'coeval' and return the 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, "o": 1, "e": 1, "v": 1, "a": 1, "l": 1}
|
coeval
|
{
"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.
|
{"\u0443": 2, "\u043a": 1, "\u0441": 1}
|
укус
|
{
"character_count": 4,
"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.
|
{"\u0431": 1, "\u0435": 2, "\u0441": 2, "\u0447": 1, "\u0443": 1, "\u0432": 2, "\u0442": 1, "\u043d": 2, "\u044b": 1, "\u043c": 1}
|
бесчувственным
|
{
"character_count": 14,
"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.
|
{"\u0909": 1, "\u0924": 1, "\u094d": 1, "\u0916": 1, "\u0928": 2}
|
उत्खनन
|
{
"character_count": 6,
"difficulty": 4,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'vitriolate' and return the 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, "t": 2, "r": 1, "o": 1, "l": 1, "a": 1, "e": 1}
|
vitriolate
|
{
"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.
|
{"\u0915": 1, "\u093e": 1, "\u0922": 1, "\u093c": 1, "\u0947": 1}
|
काढ़े
|
{
"character_count": 5,
"difficulty": 5,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'inselberg' and return the 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": 1, "s": 1, "e": 2, "l": 1, "b": 1, "r": 1, "g": 1}
|
inselberg
|
{
"character_count": 9,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'unprocurable' and return the 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, "p": 1, "r": 2, "o": 1, "c": 1, "a": 1, "b": 1, "l": 1, "e": 1}
|
unprocurable
|
{
"character_count": 12,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'wheyish' and return the 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, "h": 2, "e": 1, "y": 1, "i": 1, "s": 1}
|
wheyish
|
{
"character_count": 7,
"difficulty": 1,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'transnatural' and return the 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": 3, "n": 2, "s": 1, "u": 1, "l": 1}
|
transnatural
|
{
"character_count": 12,
"difficulty": 8,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'greensick' and return the 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, "r": 1, "e": 2, "n": 1, "s": 1, "i": 1, "c": 1, "k": 1}
|
greensick
|
{
"character_count": 9,
"difficulty": 3,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'delubrum' and return the 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, "l": 1, "u": 2, "b": 1, "r": 1, "m": 1}
|
delubrum
|
{
"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.
|
{"\u30bb": 1, "\u30b0": 1, "\u30e1": 1, "\u30f3": 2, "\u30c6": 1, "\u30fc": 1, "\u30b7": 1, "\u30e7": 1}
|
セグメンテーション
|
{
"character_count": 9,
"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.
|
{"\u0433": 1, "\u043d": 2, "\u043e": 1, "\u0439": 2, "\u044b": 1}
|
гнойный
|
{
"character_count": 7,
"difficulty": 5,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'aminoplast' and return the 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, "m": 1, "i": 1, "n": 1, "o": 1, "p": 1, "l": 1, "s": 1, "t": 1}
|
aminoplast
|
{
"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.
|
{"\u0938": 1, "\u092e": 1, "\u092f": 1}
|
समय
|
{
"character_count": 3,
"difficulty": 2,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'ignorantist' and return the 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": 2, "g": 1, "n": 2, "o": 1, "r": 1, "a": 1, "t": 2, "s": 1}
|
ignorantist
|
{
"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.
|
{"\u043b": 1, "\u0430": 2, "\u0441": 1, "\u043a": 1, "\u0442": 1, "\u044c": 1}
|
ласкать
|
{
"character_count": 7,
"difficulty": 3,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'unmenaced' and return the 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": 2, "m": 1, "e": 2, "a": 1, "c": 1, "d": 1}
|
unmenaced
|
{
"character_count": 9,
"difficulty": 3,
"language": "english"
}
|
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": 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.
|
{"\u043f": 1, "\u0430": 1, "\u0440": 1, "\u043e": 1, "\u043c": 1}
|
паром
|
{
"character_count": 5,
"difficulty": 2,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'telergically' and return the 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, "e": 2, "l": 3, "r": 1, "g": 1, "i": 1, "c": 1, "a": 1, "y": 1}
|
telergically
|
{
"character_count": 12,
"difficulty": 8,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'tiltyard' and return the 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, "i": 1, "l": 1, "y": 1, "a": 1, "r": 1, "d": 1}
|
tiltyard
|
{
"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.
|
{"\u30cf": 1, "\u30f3": 1, "\u30d7": 1, "\u30b7": 1, "\u30e3": 1, "\u30fc": 1}
|
ハンプシャー
|
{
"character_count": 6,
"difficulty": 2,
"language": "japanese"
}
|
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": "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.
|
{"\u043a": 2, "\u043e": 3, "\u043d": 1, "\u0441": 1, "\u0433": 1}
|
конского
|
{
"character_count": 8,
"difficulty": 3,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'unplumb' and return the 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, "p": 1, "l": 1, "m": 1, "b": 1}
|
unplumb
|
{
"character_count": 7,
"difficulty": 5,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'apocarpous' and return the 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, "p": 2, "o": 2, "c": 1, "r": 1, "u": 1, "s": 1}
|
apocarpous
|
{
"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.
|
{"\u0418": 1, "\u0441": 1, "\u043c": 1, "\u0430": 1, "\u0438": 2, "\u043b": 1, "\u044c": 1, "\u0442": 1, "\u044f": 1, "\u043d": 2}
|
Исмаильтянин
|
{
"character_count": 12,
"difficulty": 8,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'venturesomely' and return the 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, "e": 3, "n": 1, "t": 1, "u": 1, "r": 1, "s": 1, "o": 1, "m": 1, "l": 1, "y": 1}
|
venturesomely
|
{
"character_count": 13,
"difficulty": 5,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'reprehensibility' and return the 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, "e": 3, "p": 1, "h": 1, "n": 1, "s": 1, "i": 3, "b": 1, "l": 1, "t": 1, "y": 1}
|
reprehensibility
|
{
"character_count": 16,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'zoographist' and return the 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, "o": 2, "g": 1, "r": 1, "a": 1, "p": 1, "h": 1, "i": 1, "s": 1, "t": 1}
|
zoographist
|
{
"character_count": 11,
"difficulty": 8,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'monochromist' and return the 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, "o": 3, "n": 1, "c": 1, "h": 1, "r": 1, "i": 1, "s": 1, "t": 1}
|
monochromist
|
{
"character_count": 12,
"difficulty": 5,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'unartistlike' and return the 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, "r": 1, "t": 2, "i": 2, "s": 1, "l": 1, "k": 1, "e": 1}
|
unartistlike
|
{
"character_count": 12,
"difficulty": 5,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'Telenget' and return the 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, "e": 3, "l": 1, "n": 1, "g": 1, "t": 1}
|
Telenget
|
{
"character_count": 8,
"difficulty": 4,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'catchwater' and return the 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, "a": 2, "t": 2, "h": 1, "w": 1, "e": 1, "r": 1}
|
catchwater
|
{
"character_count": 10,
"difficulty": 3,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'SAMPI' and return the 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, "M": 1, "P": 1, "I": 1}
|
SAMPI
|
{
"character_count": 5,
"difficulty": 3,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'inconvincible' and return the 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": 3, "c": 2, "o": 1, "v": 1, "b": 1, "l": 1, "e": 1}
|
inconvincible
|
{
"character_count": 13,
"difficulty": 5,
"language": "hindi"
}
|
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": "chinese"
}
|
Count the number of occurrences of each character in the word 'centerboard' and return the 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": 2, "n": 1, "t": 1, "r": 2, "b": 1, "o": 1, "a": 1, "d": 1}
|
centerboard
|
{
"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.
|
{"\u041b": 1, "\u0438": 2, "\u0431": 2}
|
Либби
|
{
"character_count": 5,
"difficulty": 2,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'deride' and return the 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": 2, "r": 1, "i": 1}
|
deride
|
{
"character_count": 6,
"difficulty": 3,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'Ancyloceras' and return the 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, "n": 1, "c": 2, "y": 1, "l": 1, "o": 1, "e": 1, "r": 1, "a": 1, "s": 1}
|
Ancyloceras
|
{
"character_count": 11,
"difficulty": 9,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'Rosalia' and return the 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, "o": 1, "s": 1, "a": 2, "l": 1, "i": 1}
|
Rosalia
|
{
"character_count": 7,
"difficulty": 3,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'BAZOO' and return the 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": 1, "Z": 1, "O": 2}
|
BAZOO
|
{
"character_count": 5,
"difficulty": 3,
"language": "hindi"
}
|
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": 5,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'hydroselenide' and return the 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": 2, "r": 1, "o": 1, "s": 1, "e": 3, "l": 1, "n": 1, "i": 1}
|
hydroselenide
|
{
"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.
|
{"\u092a": 1, "\u094d": 1, "\u092f": 1, "\u0942": 1, "\u0930": 1, "\u0940": 1}
|
प्यूरी
|
{
"character_count": 6,
"difficulty": 4,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'obligable' and return the 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, "b": 2, "l": 2, "i": 1, "g": 1, "a": 1, "e": 1}
|
obligable
|
{
"character_count": 9,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'plaguer' and return the 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, "a": 1, "g": 1, "u": 1, "e": 1, "r": 1}
|
plaguer
|
{
"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.
|
{"\u5938": 1, "\u5f20": 1, "\u8005": 1}
|
夸张者
|
{
"character_count": 3,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'unorthodoxy' and return the 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, "o": 3, "r": 1, "t": 1, "h": 1, "d": 1, "x": 1, "y": 1}
|
unorthodoxy
|
{
"character_count": 11,
"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.
|
{"\u5065": 1, "\u5eb7": 1, "\u7684": 1}
|
健康的
|
{
"character_count": 3,
"difficulty": 3,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'doglike' and return the 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, "o": 1, "g": 1, "l": 1, "i": 1, "k": 1, "e": 1}
|
doglike
|
{
"character_count": 7,
"difficulty": 2,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'Ibsenism' and return the 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, "b": 1, "s": 2, "e": 1, "n": 1, "i": 1, "m": 1}
|
Ibsenism
|
{
"character_count": 8,
"difficulty": 4,
"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": "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.
|
{"\u0907": 1, "\u0902": 1, "\u0915": 1, "\u093e": 1}
|
इंका
|
{
"character_count": 4,
"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.
|
{"\u0445": 1, "\u043e": 3, "\u043b": 1, "\u0434": 1, "\u043d": 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.
|
{"\u30ea": 1, "\u30d3": 1, "\u30fc": 1}
|
リビー
|
{
"character_count": 3,
"difficulty": 2,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'adelomorphic' and return the 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, "d": 1, "e": 1, "l": 1, "o": 2, "m": 1, "r": 1, "p": 1, "h": 1, "i": 1, "c": 1}
|
adelomorphic
|
{
"character_count": 12,
"difficulty": 9,
"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.
|
{"\u0938": 1, "\u0939": 1, "\u093e": 1, "\u092f": 1, "\u0915": 1}
|
सहायक
|
{
"character_count": 5,
"difficulty": 2,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'godchild' and return the 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, "o": 1, "d": 2, "c": 1, "h": 1, "i": 1, "l": 1}
|
godchild
|
{
"character_count": 8,
"difficulty": 3,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'cartload' and return the 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, "r": 1, "t": 1, "l": 1, "o": 1, "d": 1}
|
cartload
|
{
"character_count": 8,
"difficulty": 2,
"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.
|
{"\u0437": 1, "\u0430": 1, "\u044d": 1, "\u0432": 1, "\u0442": 2, "\u0435": 2, "\u043a": 2, "\u0438": 2, "\u0447": 1, "\u0441": 1, "\u0439": 1}
|
заэвтектический
|
{
"character_count": 15,
"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.
|
{"\u043b": 1, "\u0435": 1, "\u0441": 1, "\u0442": 1, "\u043d": 1, "\u0438": 1, "\u0446": 1, "\u0430": 1}
|
лестница
|
{
"character_count": 8,
"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.
|
{"\u97f3": 1, "\u697d": 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.
|
{"\u0430": 3, "\u043a": 1, "\u043d": 1, "\u0442": 1}
|
аканта
|
{
"character_count": 6,
"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.
|
{"\u8f6f": 1, "\u9aa8": 1, "\u819c": 1}
|
软骨膜
|
{
"character_count": 3,
"difficulty": 7,
"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, "\u043e": 3, "\u043b": 1, "\u0434": 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.
|
{"\u9045": 1, "\u3044": 1}
|
遅い
|
{
"character_count": 2,
"difficulty": 4,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'peroxy' and return the 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, "e": 1, "r": 1, "o": 1, "x": 1, "y": 1}
|
peroxy
|
{
"character_count": 6,
"difficulty": 3,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'pedometer' and return the 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, "e": 3, "d": 1, "o": 1, "m": 1, "t": 1, "r": 1}
|
pedometer
|
{
"character_count": 9,
"difficulty": 3,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'gimlety' and return the 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, "i": 1, "m": 1, "l": 1, "e": 1, "t": 1, "y": 1}
|
gimlety
|
{
"character_count": 7,
"difficulty": 3,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'bouncingly' and return the 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, "u": 1, "n": 2, "c": 1, "i": 1, "g": 1, "l": 1, "y": 1}
|
bouncingly
|
{
"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.
|
{"\u092e": 1, "\u093f": 1, "\u0932": 1, "\u093e": 2, "\u0928": 1}
|
मिलाना
|
{
"character_count": 6,
"difficulty": 2,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'pappi' and return the 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, "a": 1, "i": 1}
|
pappi
|
{
"character_count": 5,
"difficulty": 2,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'mucosopurulent' and return the 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": 3, "c": 1, "o": 2, "s": 1, "p": 1, "r": 1, "l": 1, "e": 1, "n": 1, "t": 1}
|
mucosopurulent
|
{
"character_count": 14,
"difficulty": 9,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'aproneer' and return the 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, "p": 1, "r": 2, "o": 1, "n": 1, "e": 2}
|
aproneer
|
{
"character_count": 8,
"difficulty": 8,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'acyloxy' and return the 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, "c": 1, "y": 2, "l": 1, "o": 1, "x": 1}
|
acyloxy
|
{
"character_count": 7,
"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.
|
{"\u0918": 1, "\u0930": 1, "\u094d": 1, "\u0937": 1, "\u0923": 1}
|
घर्षण
|
{
"character_count": 5,
"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.
|
{"\u6797": 1, "\u4f2f": 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.
|
{"\u0935": 1, "\u0928": 1, "\u0930": 1, "\u094b": 1, "\u092a": 1, "\u0923": 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.
|
{"\u043c": 1, "\u0430": 1, "\u0441": 2, "\u0438": 1, "\u0432": 1}
|
массив
|
{
"character_count": 6,
"difficulty": 3,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'icterical' and return the 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": 2, "c": 2, "t": 1, "e": 1, "r": 1, "a": 1, "l": 1}
|
icterical
|
{
"character_count": 9,
"difficulty": 8,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'subgoverness' and return the 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, "u": 1, "b": 1, "g": 1, "o": 1, "v": 1, "e": 2, "r": 1, "n": 1}
|
subgoverness
|
{
"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.
|
{"\u673a": 1, "\u6784": 1}
|
机构
|
{
"character_count": 2,
"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.
|
{"\u5c0f": 1, "\u8bf4": 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.
|
{"\u0434": 2, "\u0435": 1, "\u0443": 1, "\u0448": 1, "\u043a": 1, "\u0430": 1}
|
дедушка
|
{
"character_count": 7,
"difficulty": 2,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'fairyism' and return the 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, "a": 1, "i": 2, "r": 1, "y": 1, "s": 1, "m": 1}
|
fairyism
|
{
"character_count": 8,
"difficulty": 2,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'waiterage' and return the 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": 2, "i": 1, "t": 1, "e": 2, "r": 1, "g": 1}
|
waiterage
|
{
"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.
|
{"\u30de": 1, "\u30ea": 1, "\u30e5": 1, "\u30b9": 1}
|
マリュス
|
{
"character_count": 4,
"difficulty": 3,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'officeress' and return the 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, "f": 2, "i": 1, "c": 1, "e": 2, "r": 1, "s": 2}
|
officeress
|
{
"character_count": 10,
"difficulty": 5,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'saxhorn' and return the 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, "x": 1, "h": 1, "o": 1, "r": 1, "n": 1}
|
saxhorn
|
{
"character_count": 7,
"difficulty": 3,
"language": "chinese"
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.