# SAMS 2017, Programming Section C
#########################################
# Full name:
# Andrew ID:
#########################################

# DUE DATE: SUNDAY JULY 23RD, 5PM.
# SUBMIT THIS FILE TO AUTOLAB. LATE SUBMISSIONS WILL NOT BE ACCEPTED.

# YOU WILL BE GRADED FOR STYLE IN THIS HOMEWORK!

# USE HELPER FUNCTIONS LIBERALLY!

# Do problems 1, 2, 3 and 4 from 
# http://www.kosbie.net/cmu/spring-16/15-112/notes/hw4.html


def lookAndSay(a):
    return 42


def inverseLookAndSay(a):
    return 42


def solvesCryptarithm(puzzle, solution):
    return 42


def bestScrabbleScore(dictionary, letterScores, hand):
    return 42


######################################################################
# ignore_rest: The autograder will ignore all code below here
######################################################################

# Make sure every function is tested thoroughly before you submit to Autolab.
# Put your test functions here:




