fsharp
fsharp copied to clipboard
Exercism exercises in F#.
Implements #1091 with documentation.
Minor update to blurb grammar to change from "analyze" to "analyzing"
For the [Binary Search](https://exercism.org/tracks/fsharp/exercises/binary-search) exercise, there is nothing to prevent an implementation using [`Array.tryFindIndex`](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-collections-arraymodule.html#tryFindIndex). So this implementation is accepted. ```fsharp module BinarySearch let find input value = Array.tryFindIndex ((=) value)...
With Github Actions now supporting Job Summaries, we can leverage this to show the test results in a nice way. For that, we can use the Test Summary Action: https://github.com/test-summary/action...
Changed alphameticstests.fs to make all tests async and added xunit Timeout attribute to longest 3 tests with 2 secs for ``Puzzle with eight letters`` and 5 seconds each for ``Puzzle...
This issue describes how to implement the `method-overloading` concept exercise for the F# track. ## Getting started **Please please please read the docs before starting.** Posting PRs without reading these...
This issue describes how to implement the `tuples` concept exercise for the F# track. ## Getting started **Please please please read the docs before starting.** Posting PRs without reading these...
This issue describes how to implement the `memory-allocation` concept exercise for the F# track. ## Getting started **Please please please read the docs before starting.** Posting PRs without reading these...
This issue describes how to implement the `error-handling` concept exercise for the F# track. ## Getting started **Please please please read the docs before starting.** Posting PRs without reading these...
This issue describes how to implement the `chars` concept exercise for the F# track. ## Getting started **Please please please read the docs before starting.** Posting PRs without reading these...