lachlanhardy (owner)

Forks

Revisions

  • 45f601 Wed Feb 25 19:10:13 -0800 2009
gist: 70614 Download_button fork
public
Public Clone URL: git://gist.github.com/70614.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
def f(ra,n)
  r=0
  ra.each {|x| r+=1 if x.include? n}
  r
end