Sha256: bb51c774b47b47656ea35c00d94435585ce963feb76dd13594ad752cdb33a1bc

Contents?: true

Size: 490 Bytes

Versions: 253

Compression:

Stored size: 490 Bytes

Contents

module BinarySearch
  ( find
  ) where

import Prelude
import Data.Array (length, (!!))
import Data.Maybe (Maybe(Just, Nothing))

find :: Int -> Array Int -> Maybe Int
find i a = go 0 (length a - 1)
  where go l h | l > h = Nothing
        go l h =
          let m = l + (h - l) / 2
          in case a !! m of
               Nothing -> Nothing
               Just j | j == i    -> Just m
                      | j < i     -> go (m + 1) h
                      | otherwise -> go l (m - 1)

Version data entries

253 entries across 253 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.118 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.117 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.116 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.115 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.114 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.113 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.111 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.110 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.109 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.108 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.107 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.106 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.105 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.104 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.103 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.102 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.101 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.100 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.99 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs