diff options
| author | Mistivia <i@mistivia.com> | 2024-02-15 17:06:54 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2024-02-15 17:06:54 +0800 |
| commit | 58709a89622062b527b242f65aa0501a4efd47d3 (patch) | |
| tree | 118a2a30c2dfc65360c4d5a8c85a81b80178c93a /codewars/6-kyu/equal-sides-of-an-array/solution.hs | |
| parent | 4e5cb9c3b56bc1c84118586d2f9b7fde6566285a (diff) | |
update
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.hs | 11 |
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) |
