Skip to content

Instantly share code, notes, and snippets.

View Dshankar's full-sized avatar

Darshan Shankar Dshankar

View GitHub Profile

Keybase proof

I hereby claim:

  • I am dshankar on github.
  • I am dshankar (https://keybase.io/dshankar) on keybase.
  • I have a public key whose fingerprint is A4C3 529E 5659 0A1C A5C1 4732 D05B F596 941F D665

To claim this, I am signing this object:

Business Models

Advertising

Models Examples
Display ads Yahoo!
Search ads Google
function product(array)
if(array.count == 0)
return 0
else if(array.count == 1)
return array[0]
else
return array[0] * product(array.shift)
end
end