count_letters
Count occurrences of a specific letter in a given word using this utility. Input the word and letter to get precise results.
Instructions
Count the number of times a letter appears in a word
Input Schema
Name | Required | Description | Default |
---|---|---|---|
letter | Yes | The letter to count | |
word | Yes | The word to count letters in |
Input Schema (JSON Schema)
{
"properties": {
"letter": {
"description": "The letter to count",
"title": "Letter",
"type": "string"
},
"word": {
"description": "The word to count letters in",
"title": "Word",
"type": "string"
}
},
"required": [
"word",
"letter"
],
"type": "object"
}