int get_word_score(char word[], int n)
/*  Returns the score for a word. Assumes the word is a valid word.
    The score for a word is the sum of the points for letters in the word, plus 50 points if all n letters are used on the first go.
    Letters are scored as in Scrabble; a is worth 1, b is worth 3, c is worth 3, d is worth 2, e is worth 1, and so on.
    word: string (lowercase letters)
    n: length of the array that word points to
    returns: int >=0
*/
{
	//implement code here
}

