我正在研究一个以字符串作为输入的数字生成器,并在特定范围内生成一个数字作为输出。为此,我需要确定md5校验和可以具有的最小和最大可能值,然后将md5校验和转换为该范围内的数字。如何将md5校验和转换为指定范围内的数字?
function getNumberInRange(md5checksum, min, max){
//generate a number between min to max, inclusive, using the md5 checksum that is entered in the input.
//Every input should have exactly one output.
}