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.139 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.138 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.137 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.136 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.135 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.134 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.133 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.132 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.131 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.130 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.129 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.128 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.127 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.126 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.125 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.124 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.123 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.122 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.121 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs
trackler-2.2.1.120 tracks/purescript/exercises/binary-search/examples/src/BinarySearch.purs