Problem I made a simple insertion sort in F#, it uses a tail recursive shift function that attempts to shift […]
Tag: f#
How to improve this array manipulation function? [closed]
Problem Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add […]
Is there a better way of defining custom calendars?
Problem I need to define custom calendars and, in particular, test a DateTime for being a holiday. My current code […]
Immuitable recursive linear search of an array of string
Problem I am new to F#. Is the following code, which represents about three hours of work, a canonical way […]
Add spaces before uppercase letters
Problem I’m trying to convert some very simple C# string utility functions to F# as a learning exercise. Ignore the […]
Three implementations of mergesort in F#
Problem I would appreciate some quick comments on this basic mergesort code. Am I missing a big block in the […]
Roman Numbers – The Functional Way
Problem Yet another exercise in converting values between the decimal and roman number systems. I have tried the functional way. […]
Advent of Code 2019 day 2 in F#
Problem I sped through the 5hr F# pluralsight course this week-end and thought I’d sement my learning by going through […]
Unblock Me / Rush Hour solver
Problem This is my first complete program written in F# (I was from C# and occasionally do interop) and I […]
Navigating a bounded 2D list (Advent of Code, Day 2: “Bathroom Security”)
Problem I’m trying to solve the following Advent of Code problem in F# for practice. Description of problem (can be […]