diff --git a/243/solve.py b/243/solve.py new file mode 100644 index 0000000..d378406 --- /dev/null +++ b/243/solve.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +import hashlib + +str = 'homeless shelters' +result = hashlib.md5(str.encode()) +print(result.hexdigest()) \ No newline at end of file