Function crack

Source
pub fn crack(string: String) -> Result<i32, ()>
Expand description

Given is a md5 hash of a five digits long PIN. It is given as string. Your task is to return the cracked PIN as string.

ยงExample

crack("827ccb0eea8a706c4c34a16891f84e7b");
returns Ok(12345)