aboutsummaryrefslogtreecommitdiff
path: root/codewars/6-kyu/equal-sides-of-an-array/solution.hs
diff options
context:
space:
mode:
Diffstat (limited to 'codewars/6-kyu/equal-sides-of-an-array/solution.hs')
-rw-r--r--codewars/6-kyu/equal-sides-of-an-array/solution.hs11
1 files changed, 0 insertions, 11 deletions
diff --git a/codewars/6-kyu/equal-sides-of-an-array/solution.hs b/codewars/6-kyu/equal-sides-of-an-array/solution.hs
deleted file mode 100644
index 00717d7..0000000
--- a/codewars/6-kyu/equal-sides-of-an-array/solution.hs
+++ /dev/null
@@ -1,11 +0,0 @@
--- https://www.codewars.com/kata/5679aa472b8f57fb8c000047
-
-module Codewars.G964.FindEven where
-
-findEvenIndex :: [Int] -> Int
-findEvenIndex arr = findEvenIndexImpl [] 0 arr
-
-findEvenIndexImpl left n right
- | right == [] = -1
- | sum left == sum (tail right) = n
- | otherwise = findEvenIndexImpl (left ++ [head right]) (n + 1) (tail right)