Skip to content

rxw1/gematria

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gematria

Simple gematria app

Hosted at https://gematria-pi.vercel.app/

  function f(x) {
    return parseInt(Math.pow(10,
      Math.floor((x - 1) / 9)) * (((x - 1) % 9) + 1));
  }