Missing Characters

1

1 votes
Easy
Problem

You are given a string containing only lowercase english alphabet. You have to find number of missing alphabets in that string.

Input

  1. T, No. of Test Case (1<=T<=100)
  2. T lines contain a String, S (1<=|S|<=10^5)

Output

  1. T lines contain a integer.
Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation
  1. abaac have three alphabet i,e, a,b,c, Remaining 23 alphabets are missing
Editor Image

?