RosettaCodeData/Task/Binary-search/Niue/binary-search.niue
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

10 lines
239 B
Text

1 2 3 4 5
3 bsearch . ( => 2 )
5 bsearch . ( => 0 )
'sam 'tom 'kenny ( must be sorted before calling bsearch )
sort
.s ( => kenny sam tom )
'sam bsearch . ( => 1 )
'tom bsearch . ( => 0 )
'kenny bsearch . ( => 2 )
'tony bsearch . ( => -1)