Skip to content

rtblair/Fog-Creek-Hashing-Problem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Fog Creek Application Problem

For fun, I solved Fog Creek's application problem on an unlisted software development job page.

The requirements were as follows:

Find a 9 letter string of characters that contains only letters from

acdegilmnoprstuw

such that the hash(the_string) is

945924806726376

if hash is defined by the following pseudo-code:

Int64 hash (String s) { Int64 h = 7 String letters = "acdegilmnoprstuw" for(Int32 i = 0; i < s.length; i++) { h = (h * 37 + letters.indexOf(s[i])) } return h }

For example, if we were trying to find the 7 letter string where hash(the_string) was 680131659347, the answer would be "leepadg".

About

A PHP solution to an unlisted Fog Creek application question.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages