###Arjun Kharel - G00298984 - Theory of Algorithms - Year 4 (GMIT)
Source code and project files at: https://github.com/ultimatecodelab/Countdown-Letters
#Table of contents
###1: Introduction ###2: Background ###3: Words List
##Arjun Kharel - Software Development (GMIT) - Theory of Algorithms | |
import timeit | |
wordmap = dict() | |
def anagram(word): | |
#convert to ascii value first and check against the dict words | |
convertedKey = sum(bytearray(word,'utf8')) | |
#print ("ASCII value of %s, is %d" % (word,convertedKey)) |
###Arjun Kharel - G00298984 - Theory of Algorithms - Year 4 (GMIT)
Source code and project files at: https://github.com/ultimatecodelab/Countdown-Letters
#Table of contents
###1: Introduction ###2: Background ###3: Words List