All input will be lowercase English alphabet.
HashString("ab")= should be unique value
HashString("ba")= should give me the same value as above
I tried with assigning each alphabet with a number, but it turned out to be wrong logic
My attempt produced following output.
HashString("ab")=3
HashString("ba")=3 this is correct.
HashString("c")=3 this is wrong.