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.
|
{"\u53f7": 1, "\u6ce3": 1}
|
号泣
|
{
"character_count": 2,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'meliphagous' and return the 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": 1, "l": 1, "i": 1, "p": 1, "h": 1, "a": 1, "g": 1, "o": 1, "u": 1, "s": 1}
|
meliphagous
|
{
"character_count": 11,
"difficulty": 5,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'gloweringly' and return the 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": 2, "l": 2, "o": 1, "w": 1, "e": 1, "r": 1, "i": 1, "n": 1, "y": 1}
|
gloweringly
|
{
"character_count": 11,
"difficulty": 8,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'dheri' and return the 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, "h": 1, "e": 1, "r": 1, "i": 1}
|
dheri
|
{
"character_count": 5,
"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.
|
{"\u3082": 2, "\u3063": 1, "\u3068": 1, "\u3089": 1, "\u3057": 1, "\u304f": 1}
|
もっともらしく
|
{
"character_count": 7,
"difficulty": 3,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'intricate' and return the 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, "n": 1, "t": 2, "r": 1, "c": 1, "a": 1, "e": 1}
|
intricate
|
{
"character_count": 9,
"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.
|
{"\u0915": 1, "\u094b": 2, "\u0939": 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.
|
{"\u30b5": 1, "\u30f3": 1}
|
サン
|
{
"character_count": 2,
"difficulty": 1,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'tellership' and return the 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": 2, "r": 1, "s": 1, "h": 1, "i": 1, "p": 1}
|
tellership
|
{
"character_count": 10,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'varec' and return the 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": 1, "r": 1, "e": 1, "c": 1}
|
varec
|
{
"character_count": 5,
"difficulty": 3,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'ricinus' and return the 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, "i": 2, "c": 1, "n": 1, "u": 1, "s": 1}
|
ricinus
|
{
"character_count": 7,
"difficulty": 4,
"language": "english"
}
|
Count the number of occurrences of each character in the word '马尾' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"\u9a6c": 1, "\u5c3e": 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.
|
{"\u043d": 3, "\u0435": 2, "\u043e": 3, "\u0442": 1, "\u043f": 1, "\u0443": 1, "\u0449": 1, "\u0433": 1}
|
неотпущенного
|
{
"character_count": 13,
"difficulty": 7,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'ungirth' and return the 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, "g": 1, "i": 1, "r": 1, "t": 1, "h": 1}
|
ungirth
|
{
"character_count": 7,
"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.
|
{"\u5851": 1}
|
塑
|
{
"character_count": 1,
"difficulty": 3,
"language": "chinese"
}
|
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": 5,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'deash' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"d": 1, "e": 1, "a": 1, "s": 1, "h": 1}
|
deash
|
{
"character_count": 5,
"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.
|
{"\u0928": 1, "\u093e": 2, "\u0908": 1, "\u091f": 1, "\u091c": 1, "\u0930": 1}
|
नाईटजार
|
{
"character_count": 7,
"difficulty": 5,
"language": "hindi"
}
|
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": 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.
|
{"\u0935": 1, "\u093f": 1, "\u092d": 1, "\u093e": 1, "\u091c": 1, "\u0928": 1}
|
विभाजन
|
{
"character_count": 6,
"difficulty": 4,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'acture' and return the 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, "t": 1, "u": 1, "r": 1, "e": 1}
|
acture
|
{
"character_count": 6,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'insectifuge' and return the 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, "n": 1, "s": 1, "e": 2, "c": 1, "t": 1, "f": 1, "u": 1, "g": 1}
|
insectifuge
|
{
"character_count": 11,
"difficulty": 5,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'egad' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"e": 1, "g": 1, "a": 1, "d": 1}
|
egad
|
{
"character_count": 4,
"difficulty": 1,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'compart' and return the 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, "m": 1, "p": 1, "a": 1, "r": 1, "t": 1}
|
compart
|
{
"character_count": 7,
"difficulty": 3,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'excitability' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"e": 1, "x": 1, "c": 1, "i": 3, "t": 2, "a": 1, "b": 1, "l": 1, "y": 1}
|
excitability
|
{
"character_count": 12,
"difficulty": 5,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'boarfish' and return the 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, "a": 1, "r": 1, "f": 1, "i": 1, "s": 1, "h": 1}
|
boarfish
|
{
"character_count": 8,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'toddler' and return the 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, "d": 2, "l": 1, "e": 1, "r": 1}
|
toddler
|
{
"character_count": 7,
"difficulty": 2,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'upgang' and return the 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, "p": 1, "g": 2, "a": 1, "n": 1}
|
upgang
|
{
"character_count": 6,
"difficulty": 2,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'worset' and return the 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, "o": 1, "r": 1, "s": 1, "e": 1, "t": 1}
|
worset
|
{
"character_count": 6,
"difficulty": 1,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'podley' and return the 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, "d": 1, "l": 1, "e": 1, "y": 1}
|
podley
|
{
"character_count": 6,
"difficulty": 5,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'blesbuck' and return the 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": 2, "l": 1, "e": 1, "s": 1, "u": 1, "c": 1, "k": 1}
|
blesbuck
|
{
"character_count": 8,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'disjunctor' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"d": 1, "i": 1, "s": 1, "j": 1, "u": 1, "n": 1, "c": 1, "t": 1, "o": 1, "r": 1}
|
disjunctor
|
{
"character_count": 10,
"difficulty": 8,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'mimester' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"m": 2, "i": 1, "e": 2, "s": 1, "t": 1, "r": 1}
|
mimester
|
{
"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.
|
{"\u0935": 1, "\u093f": 2, "\u0936": 1, "\u0947": 1, "\u0937": 1, "\u093e": 2, "\u0927": 1, "\u0915": 1, "\u0930": 1}
|
विशेषाधिकार
|
{
"character_count": 11,
"difficulty": 5,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'माँग' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"\u092e": 1, "\u093e": 1, "\u0901": 1, "\u0917": 1}
|
माँग
|
{
"character_count": 4,
"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.
|
{"\u0436": 1, "\u0430": 2, "\u043d": 1, "\u0434": 1, "\u0440": 2, "\u043c": 1, "\u0435": 1, "\u0438": 2}
|
жандармерии
|
{
"character_count": 11,
"difficulty": 8,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'satirizer' and return the 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, "t": 1, "i": 2, "r": 2, "z": 1, "e": 1}
|
satirizer
|
{
"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.
|
{"\u043a": 2, "\u043e": 1, "\u043d": 1, "\u0434": 1, "\u0438": 1, "\u0442": 1, "\u0435": 1, "\u0440": 1, "\u0441": 1, "\u0430": 1, "\u044f": 1}
|
кондитерская
|
{
"character_count": 12,
"difficulty": 5,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'catallactically' and return the 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": 4, "t": 2, "l": 4, "i": 1, "y": 1}
|
catallactically
|
{
"character_count": 15,
"difficulty": 1,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'susceptivity' and return the 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, "u": 1, "c": 1, "e": 1, "p": 1, "t": 2, "i": 2, "v": 1, "y": 1}
|
susceptivity
|
{
"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.
|
{"\u30a2": 1, "\u30ac": 1, "\u30eb": 1, "\u30de": 1, "\u30c8": 2, "\u30e9": 1, "\u30a4": 1}
|
アガルマトライト
|
{
"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.
|
{"\uff65": 3, "\u306e": 1, "\u3088": 1, "\u3046": 1, "\u306a": 1}
|
・・・のような
|
{
"character_count": 7,
"difficulty": 1,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'mafflin' and return the 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, "f": 2, "l": 1, "i": 1, "n": 1}
|
mafflin
|
{
"character_count": 7,
"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.
|
{"\u95f4": 1, "\u6b47": 1, "\u5f0f": 1}
|
间歇式
|
{
"character_count": 3,
"difficulty": 5,
"language": "chinese"
}
|
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": "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.
|
{"\u4e66": 1}
|
书
|
{
"character_count": 1,
"difficulty": 2,
"language": "chinese"
}
|
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": 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.
|
{"\u0926": 1, "\u0940": 1, "\u0930": 1, "\u094d": 2, "\u0918": 1, "\u0935": 1, "\u0943": 1, "\u0924": 2, "\u093e": 1, "\u092d": 1}
|
दीर्घवृत्ताभ
|
{
"character_count": 12,
"difficulty": 8,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'Diospyros' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"D": 1, "i": 1, "o": 2, "s": 2, "p": 1, "y": 1, "r": 1}
|
Diospyros
|
{
"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.
|
{"\u304b": 1, "\u3051": 1, "\u3089": 1}
|
かけら
|
{
"character_count": 3,
"difficulty": 3,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'thud' and return the 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, "u": 1, "d": 1}
|
thud
|
{
"character_count": 4,
"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.
|
{"\u4e58": 1, "\u52a1": 1, "\u957f": 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.
|
{"\u0442": 1, "\u0435": 1, "\u0447": 1, "\u044c": 1}
|
течь
|
{
"character_count": 4,
"difficulty": 3,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'societarianism' and return the 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, "o": 1, "c": 1, "i": 3, "e": 1, "t": 1, "a": 2, "r": 1, "n": 1, "m": 1}
|
societarianism
|
{
"character_count": 14,
"difficulty": 8,
"language": "english"
}
|
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": "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.
|
{"\u0917": 1, "\u0930": 2, "\u092e": 1, " ": 1, "\u0915": 1, "\u0928": 1, "\u093e": 1}
|
गरम करना
|
{
"character_count": 8,
"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.
|
{"\u092e": 1, "\u0939": 1, "\u0902": 1, "\u0917": 1, "\u093e": 1}
|
महंगा
|
{
"character_count": 5,
"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.
|
{"\u623f": 1, "\u5c4b": 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.
|
{"\u76f4": 1, "\u901a": 1}
|
直通
|
{
"character_count": 2,
"difficulty": 3,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'tumatakuru' and return the 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, "u": 3, "m": 1, "a": 2, "k": 1, "r": 1}
|
tumatakuru
|
{
"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.
|
{"\u975e": 1, "\u8367": 1, "\u5149": 1}
|
非荧光
|
{
"character_count": 3,
"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.
|
{"\u043d": 2, "\u043e": 2, "\u0436": 1, "\u0439": 1, " ": 1, "\u0431": 1, "\u0440": 1, "\u0430": 1, "\u0441": 1, "\u043b": 1, "\u0435": 1, "\u0442": 1}
|
ножной браслет
|
{
"character_count": 14,
"difficulty": 5,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'unloath' and return the 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, "l": 1, "o": 1, "a": 1, "t": 1, "h": 1}
|
unloath
|
{
"character_count": 7,
"difficulty": 4,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'market' and return the 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": 1, "k": 1, "e": 1, "t": 1}
|
market
|
{
"character_count": 6,
"difficulty": 2,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'scuffed' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"s": 1, "c": 1, "u": 1, "f": 2, "e": 1, "d": 1}
|
scuffed
|
{
"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.
|
{"\u51c6": 1, "\u5907": 1, "\u6027": 1, "\u7684": 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.
|
{"\u0445": 1, "\u0430": 1, "\u043d": 1, "\u0433": 1, "\u0443": 1, "\u043b": 1}
|
хангул
|
{
"character_count": 6,
"difficulty": 3,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'predegeneracy' and return the 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": 2, "e": 4, "d": 1, "g": 1, "n": 1, "a": 1, "c": 1, "y": 1}
|
predegeneracy
|
{
"character_count": 13,
"difficulty": 8,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'tetrathionic' and return the 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": 3, "e": 1, "r": 1, "a": 1, "h": 1, "i": 2, "o": 1, "n": 1, "c": 1}
|
tetrathionic
|
{
"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.
|
{"\u0926": 1, "\u0941": 1, "\u0916": 1, " ": 2, "\u0915": 1, "\u0940": 1, "\u092c": 1, "\u093e": 1, "\u0924": 1}
|
दुख की बात
|
{
"character_count": 10,
"difficulty": 3,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'Parseeism' and return the 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, "r": 1, "s": 2, "e": 2, "i": 1, "m": 1}
|
Parseeism
|
{
"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.
|
{"\u65f6": 1, "\u95f4": 1}
|
时间
|
{
"character_count": 2,
"difficulty": 4,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'glaucomatous' and return the 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, "l": 1, "a": 2, "u": 2, "c": 1, "o": 2, "m": 1, "t": 1, "s": 1}
|
glaucomatous
|
{
"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.
|
{"\u092a": 1, "\u0930": 1, "\u093f": 2, "\u0927": 1}
|
परिधि
|
{
"character_count": 5,
"difficulty": 3,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'ungain' and return the 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, "g": 1, "a": 1, "i": 1}
|
ungain
|
{
"character_count": 6,
"difficulty": 3,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'shebang' and return the 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, "e": 1, "b": 1, "a": 1, "n": 1, "g": 1}
|
shebang
|
{
"character_count": 7,
"difficulty": 2,
"language": "english"
}
|
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": "japanese"
}
|
Count the number of occurrences of each character in the word 'cirribranch' and return the 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, "i": 2, "r": 3, "b": 1, "a": 1, "n": 1, "h": 1}
|
cirribranch
|
{
"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.
|
{"\u7a4f": 1, "\u3084": 1, "\u304b": 1, "\u306b": 1}
|
穏やかに
|
{
"character_count": 4,
"difficulty": 5,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'Boody' and return the 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": 2, "d": 1, "y": 1}
|
Boody
|
{
"character_count": 5,
"difficulty": 8,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'cantholysis' and return the 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, "h": 1, "o": 1, "l": 1, "y": 1, "s": 2, "i": 1}
|
cantholysis
|
{
"character_count": 11,
"difficulty": 9,
"language": "english"
}
|
Count the number of occurrences of each character in the word 'unrip' and return the 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, "i": 1, "p": 1}
|
unrip
|
{
"character_count": 5,
"difficulty": 1,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'shoggly' and return the 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, "o": 1, "g": 2, "l": 1, "y": 1}
|
shoggly
|
{
"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.
|
{"\u5c0f": 1, "\u3055": 1, "\u3044": 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.
|
{"\u304a": 1, "\u3057": 1, "\u3083": 1, "\u3079": 1, "\u308a": 1}
|
おしゃべり
|
{
"character_count": 5,
"difficulty": 2,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word '本' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"\u672c": 1}
|
本
|
{
"character_count": 1,
"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.
|
{"\u0908": 1, "\u092e": 1, "\u093e": 1, "\u0917": 1, "\u094c": 1}
|
ईमागौ
|
{
"character_count": 5,
"difficulty": 4,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'labiodental' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"l": 2, "a": 2, "b": 1, "i": 1, "o": 1, "d": 1, "e": 1, "n": 1, "t": 1}
|
labiodental
|
{
"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.
|
{"\u0926": 2, "\u0930": 2, "\u093f": 1, "\u094d": 1}
|
दरिद्र
|
{
"character_count": 6,
"difficulty": 3,
"language": "hindi"
}
|
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": 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.
|
{"\u30d7": 1, "\u30e9": 1, "\u30b9": 1, "\u30c1": 1, "\u30be": 1, "\u30eb": 1}
|
プラスチゾル
|
{
"character_count": 6,
"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.
|
{"\u5668": 1, "\u5177": 1}
|
器具
|
{
"character_count": 2,
"difficulty": 5,
"language": "japanese"
}
|
Count the number of occurrences of each character in the word 'overconsumption' and return the 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, "v": 1, "e": 1, "r": 1, "c": 1, "n": 2, "s": 1, "u": 1, "m": 1, "p": 1, "t": 1, "i": 1}
|
overconsumption
|
{
"character_count": 15,
"difficulty": 5,
"language": "hindi"
}
|
Count the number of occurrences of each character in the word 'dermatogen' and return the 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, "r": 1, "m": 1, "a": 1, "t": 1, "o": 1, "g": 1, "n": 1}
|
dermatogen
|
{
"character_count": 10,
"difficulty": 8,
"language": "russian"
}
|
Count the number of occurrences of each character in the word 'Thebesian' and return the 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, "e": 2, "b": 1, "s": 1, "i": 1, "a": 1, "n": 1}
|
Thebesian
|
{
"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.
|
{"\u8ca7": 1, "\u3057": 1, "\u3044": 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.
|
{"\u9f3b": 1, "\u5c0f": 1, "\u67f1": 1}
|
鼻小柱
|
{
"character_count": 3,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'cubica' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"c": 2, "u": 1, "b": 1, "i": 1, "a": 1}
|
cubica
|
{
"character_count": 6,
"difficulty": 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.
|
{"\u5c0f": 1, "\u6570": 1, "\u6015": 1, "\u957f": 1, "\u8ba1": 1}
|
小数怕长计
|
{
"character_count": 5,
"difficulty": 5,
"language": "chinese"
}
|
Count the number of occurrences of each character in the word 'preceptively' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
|
{"p": 2, "r": 1, "e": 3, "c": 1, "t": 1, "i": 1, "v": 1, "l": 1, "y": 1}
|
preceptively
|
{
"character_count": 12,
"difficulty": 5,
"language": "hindi"
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.