From 967e964f453fc031816270b90d6eab38410769a3 Mon Sep 17 00:00:00 2001 From: Tomasz Chojnacki Date: Fri, 9 Dec 2022 19:31:24 +0100 Subject: Extract common functions to util module --- aoc-2022-dotnet/Day08/Program.fs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'aoc-2022-dotnet/Day08/Program.fs') diff --git a/aoc-2022-dotnet/Day08/Program.fs b/aoc-2022-dotnet/Day08/Program.fs index 1a98c6d..23f93c0 100644 --- a/aoc-2022-dotnet/Day08/Program.fs +++ b/aoc-2022-dotnet/Day08/Program.fs @@ -1,11 +1,9 @@ module Day08 open System.IO -open System.Globalization +open Common -let parseMatrix = - array2D - >> Array2D.map CharUnicodeInfo.GetDigitValue +let parseMatrix = array2D >> Array2D.map Util.charToInt let mapEachToSeq mapping m = seq { @@ -35,8 +33,7 @@ let scenicScore (m: 'a [,]) r c = let solution1 = parseMatrix >> mapEachToSeq isVisible - >> Seq.filter id - >> Seq.length + >> Util.countWhere id let solution2 = parseMatrix >> mapEachToSeq scenicScore >> Seq.max -- cgit v1.2.3