├── .appends └── .github │ └── labels.yml ├── .codefenceignore ├── .config └── dotnet-tools.json ├── .dependabot └── config.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── new_exercise.md ├── dependabot.yml ├── labels.yml ├── org-wide-files-config.toml └── workflows │ ├── check-code-snippets.yml │ ├── configlet.yml │ ├── no-important-files-changed.yml │ ├── pause-community-contributions.yml │ ├── ping-cross-track-maintainers-team.yml │ ├── run-configlet-sync.yml │ ├── sync-labels.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── bin ├── add-practice-exercise.ps1 ├── check-code-snippets.ps1 ├── fetch-configlet ├── fetch-configlet.ps1 ├── test.ps1 ├── update-exercise-tools.ps1 └── update-exercises.ps1 ├── concepts ├── arrays │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── basics │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── booleans │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── chars │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── classes │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── datetimes │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── discriminated-unions │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── floating-point-numbers │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── higher-order-functions │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── if-then-else-expressions │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── lists │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── numbers │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── options │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── pattern-matching │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── records │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── recursion │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── strings │ ├── .meta │ │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json └── tuples │ ├── .meta │ └── config.json │ ├── about.md │ ├── introduction.md │ └── links.json ├── config.json ├── docs ├── ABOUT.md ├── GENERATORS.md ├── INSTALLATION.md ├── LEARNING.md ├── PACKAGES.md ├── REPRESENTER_NORMALIZATIONS.md ├── RESOURCES.md ├── SNIPPET.txt ├── TESTS.md ├── config.json └── img │ ├── SolutionExplorer.png │ ├── TestExplorer.png │ ├── installingNunit.png │ ├── manageNugetPackages.png │ ├── newProject.png │ ├── xamarin-fsharp-nunit.jpg │ └── xamarin-fsharp.jpg ├── exercises ├── Exercises.sln ├── Refactoring.sln ├── concept │ ├── annalyns-infiltration │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── AnnalynsInfiltration.fs │ │ ├── AnnalynsInfiltration.fsproj │ │ └── AnnalynsInfiltrationTests.fs │ ├── bandwagoner │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── Bandwagoner.fs │ │ ├── Bandwagoner.fsproj │ │ └── BandwagonerTests.fs │ ├── bird-watcher │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── BirdWatcher.fs │ │ ├── BirdWatcher.fsproj │ │ └── BirdWatcherTests.fs │ ├── booking-up-for-beauty │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── BookingUpForBeauty.fs │ │ ├── BookingUpForBeauty.fsproj │ │ └── BookingUpForBeautyTests.fs │ ├── cars-assemble │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── CarsAssemble.fs │ │ ├── CarsAssemble.fsproj │ │ └── CarsAssembleTests.fs │ ├── guessing-game │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── GuessingGame.fs │ │ ├── GuessingGame.fsproj │ │ └── GuessingGameTests.fs │ ├── interest-is-interesting │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── InterestIsInteresting.fs │ │ ├── InterestIsInteresting.fsproj │ │ └── InterestIsInterestingTests.fs │ ├── log-levels │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── LogLevels.fs │ │ ├── LogLevels.fsproj │ │ └── LogLevelsTests.fs │ ├── lucians-luscious-lasagna │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── LuciansLusciousLasagna.fs │ │ ├── LuciansLusciousLasagna.fsproj │ │ └── LuciansLusciousLasagnaTests.fs │ ├── pizza-pricing │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── PizzaPricing.fs │ │ ├── PizzaPricing.fsproj │ │ └── PizzaPricingTests.fs │ ├── role-playing-game │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── RolePlayingGame.fs │ │ ├── RolePlayingGame.fsproj │ │ └── RolePlayingGameTests.fs │ ├── squeaky-clean │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── SqueakyClean.fs │ │ ├── SqueakyClean.fsproj │ │ └── SqueakyCleanTests.fs │ ├── tisbury-treasure-hunt │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── TisburyTreasureHunt.fs │ │ ├── TisburyTreasureHunt.fsproj │ │ └── TisburyTreasureHuntTests.fs │ ├── tracks-on-tracks-on-tracks │ │ ├── .docs │ │ │ ├── hints.md │ │ │ ├── instructions.md │ │ │ ├── introduction.md │ │ │ └── introduction.md.tpl │ │ ├── .meta │ │ │ ├── Exemplar.fs │ │ │ ├── config.json │ │ │ └── design.md │ │ ├── TracksOnTracksOnTracks.fs │ │ ├── TracksOnTracksOnTracks.fsproj │ │ └── TracksOnTracksOnTracksTests.fs │ └── valentines-day │ │ ├── .docs │ │ ├── hints.md │ │ ├── instructions.md │ │ ├── introduction.md │ │ └── introduction.md.tpl │ │ ├── .meta │ │ ├── Exemplar.fs │ │ ├── config.json │ │ └── design.md │ │ ├── ValentinesDay.fs │ │ ├── ValentinesDay.fsproj │ │ └── ValentinesDayTests.fs ├── practice │ ├── accumulate │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Accumulate.fs │ │ ├── Accumulate.fsproj │ │ └── AccumulateTests.fs │ ├── acronym │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Acronym.fs │ │ ├── Acronym.fsproj │ │ └── AcronymTests.fs │ ├── affine-cipher │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── AffineCipher.fs │ │ ├── AffineCipher.fsproj │ │ └── AffineCipherTests.fs │ ├── all-your-base │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── AllYourBase.fs │ │ ├── AllYourBase.fsproj │ │ └── AllYourBaseTests.fs │ ├── allergies │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Allergies.fs │ │ ├── Allergies.fsproj │ │ └── AllergiesTests.fs │ ├── alphametics │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Alphametics.fs │ │ ├── Alphametics.fsproj │ │ └── AlphameticsTests.fs │ ├── anagram │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Anagram.fs │ │ ├── Anagram.fsproj │ │ └── AnagramTests.fs │ ├── armstrong-numbers │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ArmstrongNumbers.fs │ │ ├── ArmstrongNumbers.fsproj │ │ └── ArmstrongNumbersTests.fs │ ├── atbash-cipher │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── AtbashCipher.fs │ │ ├── AtbashCipher.fsproj │ │ └── AtbashCipherTests.fs │ ├── bank-account │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── BankAccount.fs │ │ ├── BankAccount.fsproj │ │ └── BankAccountTests.fs │ ├── beer-song │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── BeerSong.fs │ │ ├── BeerSong.fsproj │ │ └── BeerSongTests.fs │ ├── binary-search-tree │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── BinarySearchTree.fs │ │ ├── BinarySearchTree.fsproj │ │ └── BinarySearchTreeTests.fs │ ├── binary-search │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── BinarySearch.fs │ │ ├── BinarySearch.fsproj │ │ └── BinarySearchTests.fs │ ├── binary │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Binary.fs │ │ ├── Binary.fsproj │ │ └── BinaryTests.fs │ ├── bob │ │ ├── .approaches │ │ │ ├── active-patterns │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ ├── config.json │ │ │ ├── if │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ └── introduction.md │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Bob.fs │ │ ├── Bob.fsproj │ │ └── BobTests.fs │ ├── book-store │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── BookStore.fs │ │ ├── BookStore.fsproj │ │ └── BookStoreTests.fs │ ├── bottle-song │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── BottleSong.fs │ │ ├── BottleSong.fsproj │ │ └── BottleSongTests.fs │ ├── bowling │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Bowling.fs │ │ ├── Bowling.fsproj │ │ └── BowlingTests.fs │ ├── change │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Change.fs │ │ ├── Change.fsproj │ │ └── ChangeTests.fs │ ├── circular-buffer │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── CircularBuffer.fs │ │ ├── CircularBuffer.fsproj │ │ └── CircularBufferTests.fs │ ├── clock │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Clock.fs │ │ ├── Clock.fsproj │ │ └── ClockTests.fs │ ├── collatz-conjecture │ │ ├── .approaches │ │ │ ├── config.json │ │ │ ├── introduction.md │ │ │ ├── recursion │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ ├── sequence-expression │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ └── unfold │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── CollatzConjecture.fs │ │ ├── CollatzConjecture.fsproj │ │ └── CollatzConjectureTests.fs │ ├── complex-numbers │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ComplexNumbers.fs │ │ ├── ComplexNumbers.fsproj │ │ └── ComplexNumbersTests.fs │ ├── connect │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Connect.fs │ │ ├── Connect.fsproj │ │ └── ConnectTests.fs │ ├── crypto-square │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── CryptoSquare.fs │ │ ├── CryptoSquare.fsproj │ │ └── CryptoSquareTests.fs │ ├── custom-set │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── CustomSet.fs │ │ ├── CustomSet.fsproj │ │ └── CustomSetTests.fs │ ├── darts │ │ ├── .approaches │ │ │ ├── config.json │ │ │ ├── if-expressions │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ ├── introduction.md │ │ │ └── pattern-matching │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Darts.fs │ │ ├── Darts.fsproj │ │ └── DartsTests.fs │ ├── diamond │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Diamond.fs │ │ ├── Diamond.fsproj │ │ └── DiamondTests.fs │ ├── difference-of-squares │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── DifferenceOfSquares.fs │ │ ├── DifferenceOfSquares.fsproj │ │ └── DifferenceOfSquaresTests.fs │ ├── diffie-hellman │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── DiffieHellman.fs │ │ ├── DiffieHellman.fsproj │ │ └── DiffieHellmanTests.fs │ ├── dnd-character │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── DndCharacter.fs │ │ ├── DndCharacter.fsproj │ │ └── DndCharacterTests.fs │ ├── dominoes │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Dominoes.fs │ │ ├── Dominoes.fsproj │ │ └── DominoesTests.fs │ ├── dot-dsl │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── DotDsl.fs │ │ ├── DotDsl.fsproj │ │ └── DotDslTests.fs │ ├── eliuds-eggs │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── EliudsEggs.fs │ │ ├── EliudsEggs.fsproj │ │ └── EliudsEggsTests.fs │ ├── error-handling │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── ErrorHandling.fs │ │ ├── ErrorHandling.fsproj │ │ └── ErrorHandlingTests.fs │ ├── etl │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Etl.fs │ │ ├── Etl.fsproj │ │ └── EtlTests.fs │ ├── flower-field │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── FlowerField.fs │ │ ├── FlowerField.fsproj │ │ └── FlowerFieldTests.fs │ ├── food-chain │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── FoodChain.fs │ │ ├── FoodChain.fsproj │ │ └── FoodChainTests.fs │ ├── forth │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Forth.fs │ │ ├── Forth.fsproj │ │ └── ForthTests.fs │ ├── game-of-life │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── GameOfLife.fs │ │ ├── GameOfLife.fsproj │ │ └── GameOfLifeTests.fs │ ├── gigasecond │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Gigasecond.fs │ │ ├── Gigasecond.fsproj │ │ └── GigasecondTests.fs │ ├── go-counting │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── GoCounting.fs │ │ ├── GoCounting.fsproj │ │ └── GoCountingTests.fs │ ├── grade-school │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── GradeSchool.fs │ │ ├── GradeSchool.fsproj │ │ └── GradeSchoolTests.fs │ ├── grains │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Grains.fs │ │ ├── Grains.fsproj │ │ └── GrainsTests.fs │ ├── grep │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Grep.fs │ │ ├── Grep.fsproj │ │ └── GrepTests.fs │ ├── hamming │ │ ├── .approaches │ │ │ ├── config.json │ │ │ ├── introduction.md │ │ │ ├── list-comprehension │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ ├── recursion │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ └── zip │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Hamming.fs │ │ ├── Hamming.fsproj │ │ └── HammingTests.fs │ ├── hangman │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── Hangman.fs │ │ ├── Hangman.fsproj │ │ └── HangmanTests.fs │ ├── hello-world │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── HelloWorld.fs │ │ ├── HelloWorld.fsproj │ │ └── HelloWorldTests.fs │ ├── hexadecimal │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── Hexadecimal.fs │ │ ├── Hexadecimal.fsproj │ │ └── HexadecimalTests.fs │ ├── high-scores │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── HighScores.fs │ │ ├── HighScores.fsproj │ │ └── HighScoresTests.fs │ ├── house │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── House.fs │ │ ├── House.fsproj │ │ └── HouseTests.fs │ ├── isbn-verifier │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── IsbnVerifier.fs │ │ ├── IsbnVerifier.fsproj │ │ └── IsbnVerifierTests.fs │ ├── isogram │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Isogram.fs │ │ ├── Isogram.fsproj │ │ └── IsogramTests.fs │ ├── killer-sudoku-helper │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── KillerSudokuHelper.fs │ │ ├── KillerSudokuHelper.fsproj │ │ └── KillerSudokuHelperTests.fs │ ├── kindergarten-garden │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── KindergartenGarden.fs │ │ ├── KindergartenGarden.fsproj │ │ └── KindergartenGardenTests.fs │ ├── knapsack │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Knapsack.fs │ │ ├── Knapsack.fsproj │ │ └── KnapsackTests.fs │ ├── largest-series-product │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── LargestSeriesProduct.fs │ │ ├── LargestSeriesProduct.fsproj │ │ └── LargestSeriesProductTests.fs │ ├── leap │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Leap.fs │ │ ├── Leap.fsproj │ │ └── LeapTests.fs │ ├── ledger │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── Ledger.fs │ │ ├── Ledger.fsproj │ │ └── LedgerTests.fs │ ├── lens-person │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── LensPerson.fs │ │ ├── LensPerson.fsproj │ │ └── LensPersonTests.fs │ ├── linked-list │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── LinkedList.fs │ │ ├── LinkedList.fsproj │ │ └── LinkedListTests.fs │ ├── list-ops │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ListOps.fs │ │ ├── ListOps.fsproj │ │ └── ListOpsTests.fs │ ├── luhn │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Luhn.fs │ │ ├── Luhn.fsproj │ │ └── LuhnTests.fs │ ├── markdown │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Markdown.fs │ │ ├── Markdown.fsproj │ │ └── MarkdownTests.fs │ ├── matching-brackets │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── MatchingBrackets.fs │ │ ├── MatchingBrackets.fsproj │ │ └── MatchingBracketsTests.fs │ ├── matrix │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Matrix.fs │ │ ├── Matrix.fsproj │ │ └── MatrixTests.fs │ ├── meetup │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Meetup.fs │ │ ├── Meetup.fsproj │ │ └── MeetupTests.fs │ ├── minesweeper │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Minesweeper.fs │ │ ├── Minesweeper.fsproj │ │ └── MinesweeperTests.fs │ ├── nth-prime │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── NthPrime.fs │ │ ├── NthPrime.fsproj │ │ └── NthPrimeTests.fs │ ├── nucleotide-count │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── NucleotideCount.fs │ │ ├── NucleotideCount.fsproj │ │ └── NucleotideCountTests.fs │ ├── ocr-numbers │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── OcrNumbers.fs │ │ ├── OcrNumbers.fsproj │ │ └── OcrNumbersTests.fs │ ├── octal │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── Octal.fs │ │ ├── Octal.fsproj │ │ └── OctalTests.fs │ ├── palindrome-products │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── PalindromeProducts.fs │ │ ├── PalindromeProducts.fsproj │ │ └── PalindromeProductsTests.fs │ ├── pangram │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Pangram.fs │ │ ├── Pangram.fsproj │ │ └── PangramTests.fs │ ├── parallel-letter-frequency │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── ParallelLetterFrequency.fs │ │ ├── ParallelLetterFrequency.fsproj │ │ └── ParallelLetterFrequencyTests.fs │ ├── pascals-triangle │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── PascalsTriangle.fs │ │ ├── PascalsTriangle.fsproj │ │ └── PascalsTriangleTests.fs │ ├── perfect-numbers │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── PerfectNumbers.fs │ │ ├── PerfectNumbers.fsproj │ │ └── PerfectNumbersTests.fs │ ├── phone-number │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── PhoneNumber.fs │ │ ├── PhoneNumber.fsproj │ │ └── PhoneNumberTests.fs │ ├── pig-latin │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── PigLatin.fs │ │ ├── PigLatin.fsproj │ │ └── PigLatinTests.fs │ ├── poker │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Poker.fs │ │ ├── Poker.fsproj │ │ └── PokerTests.fs │ ├── pov │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Pov.fs │ │ ├── Pov.fsproj │ │ └── PovTests.fs │ ├── prime-factors │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── PrimeFactors.fs │ │ ├── PrimeFactors.fsproj │ │ └── PrimeFactorsTests.fs │ ├── protein-translation │ │ ├── .approaches │ │ │ ├── config.json │ │ │ ├── introduction.md │ │ │ ├── recursion │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ ├── seq-module │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ ├── span │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ └── unfold │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ ├── .articles │ │ │ ├── config.json │ │ │ └── performance │ │ │ │ ├── code │ │ │ │ ├── Approaches.fs │ │ │ │ ├── Benchmark.fsproj │ │ │ │ └── Program.fs │ │ │ │ ├── content.md │ │ │ │ └── snippet.md │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ProteinTranslation.fs │ │ ├── ProteinTranslation.fsproj │ │ └── ProteinTranslationTests.fs │ ├── proverb │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Proverb.fs │ │ ├── Proverb.fsproj │ │ └── ProverbTests.fs │ ├── pythagorean-triplet │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── PythagoreanTriplet.fs │ │ ├── PythagoreanTriplet.fsproj │ │ └── PythagoreanTripletTests.fs │ ├── queen-attack │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── QueenAttack.fs │ │ ├── QueenAttack.fsproj │ │ └── QueenAttackTests.fs │ ├── rail-fence-cipher │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── RailFenceCipher.fs │ │ ├── RailFenceCipher.fsproj │ │ └── RailFenceCipherTests.fs │ ├── raindrops │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Raindrops.fs │ │ ├── Raindrops.fsproj │ │ └── RaindropsTests.fs │ ├── rational-numbers │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── RationalNumbers.fs │ │ ├── RationalNumbers.fsproj │ │ └── RationalNumbersTests.fs │ ├── react │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── React.fs │ │ ├── React.fsproj │ │ └── ReactTests.fs │ ├── rectangles │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Rectangles.fs │ │ ├── Rectangles.fsproj │ │ └── RectanglesTests.fs │ ├── relative-distance │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── RelativeDistance.fs │ │ ├── RelativeDistance.fsproj │ │ └── RelativeDistanceTests.fs │ ├── resistor-color-duo │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ResistorColorDuo.fs │ │ ├── ResistorColorDuo.fsproj │ │ └── ResistorColorDuoTests.fs │ ├── resistor-color-trio │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ResistorColorTrio.fs │ │ ├── ResistorColorTrio.fsproj │ │ └── ResistorColorTrioTests.fs │ ├── resistor-color │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ResistorColor.fs │ │ ├── ResistorColor.fsproj │ │ └── ResistorColorTests.fs │ ├── rest-api │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── RestApi.fs │ │ ├── RestApi.fsproj │ │ └── RestApiTests.fs │ ├── reverse-string │ │ ├── .approaches │ │ │ ├── config.json │ │ │ ├── introduction.md │ │ │ ├── seq-module │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ ├── span │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ └── string-builder │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ReverseString.fs │ │ ├── ReverseString.fsproj │ │ └── ReverseStringTests.fs │ ├── rna-transcription │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── RnaTranscription.fs │ │ ├── RnaTranscription.fsproj │ │ └── RnaTranscriptionTests.fs │ ├── robot-name │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── RobotName.fs │ │ ├── RobotName.fsproj │ │ └── RobotNameTests.fs │ ├── robot-simulator │ │ ├── .approaches │ │ │ ├── config.json │ │ │ ├── fold │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ ├── introduction.md │ │ │ └── recursion │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── RobotSimulator.fs │ │ ├── RobotSimulator.fsproj │ │ └── RobotSimulatorTests.fs │ ├── roman-numerals │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── RomanNumerals.fs │ │ ├── RomanNumerals.fsproj │ │ └── RomanNumeralsTests.fs │ ├── rotational-cipher │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── RotationalCipher.fs │ │ ├── RotationalCipher.fsproj │ │ └── RotationalCipherTests.fs │ ├── run-length-encoding │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── RunLengthEncoding.fs │ │ ├── RunLengthEncoding.fsproj │ │ └── RunLengthEncodingTests.fs │ ├── saddle-points │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── SaddlePoints.fs │ │ ├── SaddlePoints.fsproj │ │ └── SaddlePointsTests.fs │ ├── satellite │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Satellite.fs │ │ ├── Satellite.fsproj │ │ └── SatelliteTests.fs │ ├── say │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Say.fs │ │ ├── Say.fsproj │ │ └── SayTests.fs │ ├── scale-generator │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ScaleGenerator.fs │ │ ├── ScaleGenerator.fsproj │ │ └── ScaleGeneratorTests.fs │ ├── scrabble-score │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ScrabbleScore.fs │ │ ├── ScrabbleScore.fsproj │ │ └── ScrabbleScoreTests.fs │ ├── secret-handshake │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── SecretHandshake.fs │ │ ├── SecretHandshake.fsproj │ │ └── SecretHandshakeTests.fs │ ├── series │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Series.fs │ │ ├── Series.fsproj │ │ └── SeriesTests.fs │ ├── sgf-parsing │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── SgfParsing.fs │ │ ├── SgfParsing.fsproj │ │ └── SgfParsingTests.fs │ ├── sieve │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Sieve.fs │ │ ├── Sieve.fsproj │ │ └── SieveTests.fs │ ├── simple-cipher │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── SimpleCipher.fs │ │ ├── SimpleCipher.fsproj │ │ └── SimpleCipherTests.fs │ ├── simple-linked-list │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── SimpleLinkedList.fs │ │ ├── SimpleLinkedList.fsproj │ │ └── SimpleLinkedListTests.fs │ ├── space-age │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── SpaceAge.fs │ │ ├── SpaceAge.fsproj │ │ └── SpaceAgeTests.fs │ ├── spiral-matrix │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── SpiralMatrix.fs │ │ ├── SpiralMatrix.fsproj │ │ └── SpiralMatrixTests.fs │ ├── square-root │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── SquareRoot.fs │ │ ├── SquareRoot.fsproj │ │ └── SquareRootTests.fs │ ├── state-of-tic-tac-toe │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── StateOfTicTacToe.fs │ │ ├── StateOfTicTacToe.fsproj │ │ └── StateOfTicTacToeTests.fs │ ├── strain │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── Strain.fs │ │ ├── Strain.fsproj │ │ └── StrainTests.fs │ ├── sublist │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Sublist.fs │ │ ├── Sublist.fsproj │ │ └── SublistTests.fs │ ├── sum-of-multiples │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── SumOfMultiples.fs │ │ ├── SumOfMultiples.fsproj │ │ └── SumOfMultiplesTests.fs │ ├── tournament │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Tournament.fs │ │ ├── Tournament.fsproj │ │ └── TournamentTests.fs │ ├── transpose │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Transpose.fs │ │ ├── Transpose.fsproj │ │ └── TransposeTests.fs │ ├── tree-building │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ └── config.json │ │ ├── Benchmark.fs │ │ ├── Program.fs │ │ ├── TreeBuilding.fs │ │ ├── TreeBuilding.fsproj │ │ ├── TreeBuildingBaseline.fs │ │ ├── TreeBuildingTests.fs │ │ └── TreeBuildingTypes.fs │ ├── triangle │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Triangle.fs │ │ ├── Triangle.fsproj │ │ └── TriangleTests.fs │ ├── trinary │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Trinary.fs │ │ ├── Trinary.fsproj │ │ └── TrinaryTests.fs │ ├── twelve-days │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── TwelveDays.fs │ │ ├── TwelveDays.fsproj │ │ └── TwelveDaysTests.fs │ ├── two-bucket │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── TwoBucket.fs │ │ ├── TwoBucket.fsproj │ │ └── TwoBucketTests.fs │ ├── two-fer │ │ ├── .approaches │ │ │ ├── config.json │ │ │ ├── introduction.md │ │ │ ├── option-default-value │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ └── pattern-matching │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ ├── .articles │ │ │ ├── config.json │ │ │ └── string-formatting │ │ │ │ ├── content.md │ │ │ │ └── snippet.md │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── TwoFer.fs │ │ ├── TwoFer.fsproj │ │ └── TwoFerTests.fs │ ├── variable-length-quantity │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── VariableLengthQuantity.fs │ │ ├── VariableLengthQuantity.fsproj │ │ └── VariableLengthQuantityTests.fs │ ├── word-count │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── WordCount.fs │ │ ├── WordCount.fsproj │ │ └── WordCountTests.fs │ ├── word-search │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── WordSearch.fs │ │ ├── WordSearch.fsproj │ │ └── WordSearchTests.fs │ ├── wordy │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.append.md │ │ │ └── instructions.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Wordy.fs │ │ ├── Wordy.fsproj │ │ └── WordyTests.fs │ ├── yacht │ │ ├── .approaches │ │ │ ├── active-patterns │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ │ ├── config.json │ │ │ ├── introduction.md │ │ │ └── list-module │ │ │ │ ├── content.md │ │ │ │ └── snippet.txt │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── Yacht.fs │ │ ├── Yacht.fsproj │ │ └── YachtTests.fs │ ├── zebra-puzzle │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .docs │ │ │ ├── instructions.md │ │ │ └── introduction.md │ │ ├── .meta │ │ │ ├── Example.fs │ │ │ ├── config.json │ │ │ └── tests.toml │ │ ├── ZebraPuzzle.fs │ │ ├── ZebraPuzzle.fsproj │ │ └── ZebraPuzzleTests.fs │ └── zipper │ │ ├── .config │ │ └── dotnet-tools.json │ │ ├── .docs │ │ └── instructions.md │ │ ├── .meta │ │ ├── Example.fs │ │ ├── config.json │ │ └── tests.toml │ │ ├── Zipper.fs │ │ ├── Zipper.fsproj │ │ └── ZipperTests.fs └── shared │ └── .docs │ ├── help.md │ ├── representations.md │ └── tests.md ├── generate-tests.ps1 ├── generators ├── Common.fs ├── Exercise.fs ├── Generators.fs ├── Generators.fsproj ├── Generators.sln ├── Options.fs ├── Program.fs ├── Rendering.fs ├── Templates.fs ├── Templates │ ├── Generators │ │ └── _GrepSetup.liquid │ ├── _AssertEmpty.liquid │ ├── _AssertEqual.liquid │ ├── _AssertEqualWithin.liquid │ ├── _AssertThrows.liquid │ ├── _TestClass.liquid │ ├── _TestFunction.liquid │ ├── _TestFunctionBody.liquid │ ├── _TestMember.liquid │ ├── _TestMemberBody.liquid │ └── _TestModule.liquid └── Tests.fs ├── reference ├── concepts.md ├── exercise-concepts │ ├── bob.md │ ├── book-store.md │ ├── meetup.md │ └── protein-translation.md └── implementing-a-concept-exercise.md ├── shared.ps1 ├── tools └── CodeFenceChecker │ ├── CodeFenceChecker.fsproj │ ├── Program.fs │ └── Wrapper.fs └── update-docs.ps1 /.appends/.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.appends/.github/labels.yml -------------------------------------------------------------------------------- /.codefenceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.codefenceignore -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/ISSUE_TEMPLATE/new_exercise.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/org-wide-files-config.toml: -------------------------------------------------------------------------------- 1 | [configlet] 2 | fmt = true 3 | -------------------------------------------------------------------------------- /.github/workflows/check-code-snippets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/workflows/check-code-snippets.yml -------------------------------------------------------------------------------- /.github/workflows/configlet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/workflows/configlet.yml -------------------------------------------------------------------------------- /.github/workflows/no-important-files-changed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/workflows/no-important-files-changed.yml -------------------------------------------------------------------------------- /.github/workflows/pause-community-contributions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/workflows/pause-community-contributions.yml -------------------------------------------------------------------------------- /.github/workflows/run-configlet-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/workflows/run-configlet-sync.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/README.md -------------------------------------------------------------------------------- /bin/add-practice-exercise.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/bin/add-practice-exercise.ps1 -------------------------------------------------------------------------------- /bin/check-code-snippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/bin/check-code-snippets.ps1 -------------------------------------------------------------------------------- /bin/fetch-configlet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/bin/fetch-configlet -------------------------------------------------------------------------------- /bin/fetch-configlet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/bin/fetch-configlet.ps1 -------------------------------------------------------------------------------- /bin/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/bin/test.ps1 -------------------------------------------------------------------------------- /bin/update-exercise-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/bin/update-exercise-tools.ps1 -------------------------------------------------------------------------------- /bin/update-exercises.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/bin/update-exercises.ps1 -------------------------------------------------------------------------------- /concepts/arrays/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/arrays/.meta/config.json -------------------------------------------------------------------------------- /concepts/arrays/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/arrays/about.md -------------------------------------------------------------------------------- /concepts/arrays/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/arrays/introduction.md -------------------------------------------------------------------------------- /concepts/arrays/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/arrays/links.json -------------------------------------------------------------------------------- /concepts/basics/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/basics/.meta/config.json -------------------------------------------------------------------------------- /concepts/basics/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/basics/about.md -------------------------------------------------------------------------------- /concepts/basics/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/basics/introduction.md -------------------------------------------------------------------------------- /concepts/basics/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/basics/links.json -------------------------------------------------------------------------------- /concepts/booleans/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/booleans/.meta/config.json -------------------------------------------------------------------------------- /concepts/booleans/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/booleans/about.md -------------------------------------------------------------------------------- /concepts/booleans/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/booleans/introduction.md -------------------------------------------------------------------------------- /concepts/booleans/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/booleans/links.json -------------------------------------------------------------------------------- /concepts/chars/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/chars/.meta/config.json -------------------------------------------------------------------------------- /concepts/chars/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/chars/about.md -------------------------------------------------------------------------------- /concepts/chars/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/chars/introduction.md -------------------------------------------------------------------------------- /concepts/chars/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/chars/links.json -------------------------------------------------------------------------------- /concepts/classes/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/classes/.meta/config.json -------------------------------------------------------------------------------- /concepts/classes/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/classes/about.md -------------------------------------------------------------------------------- /concepts/classes/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/classes/introduction.md -------------------------------------------------------------------------------- /concepts/classes/links.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /concepts/datetimes/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/datetimes/.meta/config.json -------------------------------------------------------------------------------- /concepts/datetimes/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/datetimes/about.md -------------------------------------------------------------------------------- /concepts/datetimes/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/datetimes/introduction.md -------------------------------------------------------------------------------- /concepts/datetimes/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/datetimes/links.json -------------------------------------------------------------------------------- /concepts/discriminated-unions/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/discriminated-unions/.meta/config.json -------------------------------------------------------------------------------- /concepts/discriminated-unions/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/discriminated-unions/about.md -------------------------------------------------------------------------------- /concepts/discriminated-unions/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/discriminated-unions/introduction.md -------------------------------------------------------------------------------- /concepts/discriminated-unions/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/discriminated-unions/links.json -------------------------------------------------------------------------------- /concepts/floating-point-numbers/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/floating-point-numbers/.meta/config.json -------------------------------------------------------------------------------- /concepts/floating-point-numbers/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/floating-point-numbers/about.md -------------------------------------------------------------------------------- /concepts/floating-point-numbers/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/floating-point-numbers/introduction.md -------------------------------------------------------------------------------- /concepts/floating-point-numbers/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/floating-point-numbers/links.json -------------------------------------------------------------------------------- /concepts/higher-order-functions/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/higher-order-functions/.meta/config.json -------------------------------------------------------------------------------- /concepts/higher-order-functions/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/higher-order-functions/about.md -------------------------------------------------------------------------------- /concepts/higher-order-functions/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/higher-order-functions/introduction.md -------------------------------------------------------------------------------- /concepts/higher-order-functions/links.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /concepts/if-then-else-expressions/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/if-then-else-expressions/.meta/config.json -------------------------------------------------------------------------------- /concepts/if-then-else-expressions/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/if-then-else-expressions/about.md -------------------------------------------------------------------------------- /concepts/if-then-else-expressions/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/if-then-else-expressions/introduction.md -------------------------------------------------------------------------------- /concepts/if-then-else-expressions/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/if-then-else-expressions/links.json -------------------------------------------------------------------------------- /concepts/lists/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/lists/.meta/config.json -------------------------------------------------------------------------------- /concepts/lists/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/lists/about.md -------------------------------------------------------------------------------- /concepts/lists/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/lists/introduction.md -------------------------------------------------------------------------------- /concepts/lists/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/lists/links.json -------------------------------------------------------------------------------- /concepts/numbers/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/numbers/.meta/config.json -------------------------------------------------------------------------------- /concepts/numbers/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/numbers/about.md -------------------------------------------------------------------------------- /concepts/numbers/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/numbers/introduction.md -------------------------------------------------------------------------------- /concepts/numbers/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/numbers/links.json -------------------------------------------------------------------------------- /concepts/options/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/options/.meta/config.json -------------------------------------------------------------------------------- /concepts/options/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/options/about.md -------------------------------------------------------------------------------- /concepts/options/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/options/introduction.md -------------------------------------------------------------------------------- /concepts/options/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/options/links.json -------------------------------------------------------------------------------- /concepts/pattern-matching/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/pattern-matching/.meta/config.json -------------------------------------------------------------------------------- /concepts/pattern-matching/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/pattern-matching/about.md -------------------------------------------------------------------------------- /concepts/pattern-matching/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/pattern-matching/introduction.md -------------------------------------------------------------------------------- /concepts/pattern-matching/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/pattern-matching/links.json -------------------------------------------------------------------------------- /concepts/records/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/records/.meta/config.json -------------------------------------------------------------------------------- /concepts/records/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/records/about.md -------------------------------------------------------------------------------- /concepts/records/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/records/introduction.md -------------------------------------------------------------------------------- /concepts/records/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/records/links.json -------------------------------------------------------------------------------- /concepts/recursion/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/recursion/.meta/config.json -------------------------------------------------------------------------------- /concepts/recursion/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/recursion/about.md -------------------------------------------------------------------------------- /concepts/recursion/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/recursion/introduction.md -------------------------------------------------------------------------------- /concepts/recursion/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/recursion/links.json -------------------------------------------------------------------------------- /concepts/strings/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/strings/.meta/config.json -------------------------------------------------------------------------------- /concepts/strings/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/strings/about.md -------------------------------------------------------------------------------- /concepts/strings/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/strings/introduction.md -------------------------------------------------------------------------------- /concepts/strings/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/strings/links.json -------------------------------------------------------------------------------- /concepts/tuples/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/tuples/.meta/config.json -------------------------------------------------------------------------------- /concepts/tuples/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/tuples/about.md -------------------------------------------------------------------------------- /concepts/tuples/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/tuples/introduction.md -------------------------------------------------------------------------------- /concepts/tuples/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/concepts/tuples/links.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/config.json -------------------------------------------------------------------------------- /docs/ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/ABOUT.md -------------------------------------------------------------------------------- /docs/GENERATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/GENERATORS.md -------------------------------------------------------------------------------- /docs/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/INSTALLATION.md -------------------------------------------------------------------------------- /docs/LEARNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/LEARNING.md -------------------------------------------------------------------------------- /docs/PACKAGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/PACKAGES.md -------------------------------------------------------------------------------- /docs/REPRESENTER_NORMALIZATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/REPRESENTER_NORMALIZATIONS.md -------------------------------------------------------------------------------- /docs/RESOURCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/RESOURCES.md -------------------------------------------------------------------------------- /docs/SNIPPET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/SNIPPET.txt -------------------------------------------------------------------------------- /docs/TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/TESTS.md -------------------------------------------------------------------------------- /docs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/config.json -------------------------------------------------------------------------------- /docs/img/SolutionExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/img/SolutionExplorer.png -------------------------------------------------------------------------------- /docs/img/TestExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/img/TestExplorer.png -------------------------------------------------------------------------------- /docs/img/installingNunit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/img/installingNunit.png -------------------------------------------------------------------------------- /docs/img/manageNugetPackages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/img/manageNugetPackages.png -------------------------------------------------------------------------------- /docs/img/newProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/img/newProject.png -------------------------------------------------------------------------------- /docs/img/xamarin-fsharp-nunit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/img/xamarin-fsharp-nunit.jpg -------------------------------------------------------------------------------- /docs/img/xamarin-fsharp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/docs/img/xamarin-fsharp.jpg -------------------------------------------------------------------------------- /exercises/Exercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/Exercises.sln -------------------------------------------------------------------------------- /exercises/Refactoring.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/Refactoring.sln -------------------------------------------------------------------------------- /exercises/concept/annalyns-infiltration/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:booleans} 4 | -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/.docs/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bandwagoner/.docs/hints.md -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bandwagoner/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bandwagoner/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:records} 4 | -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/.meta/Exemplar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bandwagoner/.meta/Exemplar.fs -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bandwagoner/.meta/config.json -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/.meta/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bandwagoner/.meta/design.md -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/Bandwagoner.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bandwagoner/Bandwagoner.fs -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/Bandwagoner.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bandwagoner/Bandwagoner.fsproj -------------------------------------------------------------------------------- /exercises/concept/bandwagoner/BandwagonerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bandwagoner/BandwagonerTests.fs -------------------------------------------------------------------------------- /exercises/concept/bird-watcher/.docs/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bird-watcher/.docs/hints.md -------------------------------------------------------------------------------- /exercises/concept/bird-watcher/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:arrays} 4 | -------------------------------------------------------------------------------- /exercises/concept/bird-watcher/.meta/Exemplar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bird-watcher/.meta/Exemplar.fs -------------------------------------------------------------------------------- /exercises/concept/bird-watcher/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bird-watcher/.meta/config.json -------------------------------------------------------------------------------- /exercises/concept/bird-watcher/.meta/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bird-watcher/.meta/design.md -------------------------------------------------------------------------------- /exercises/concept/bird-watcher/BirdWatcher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bird-watcher/BirdWatcher.fs -------------------------------------------------------------------------------- /exercises/concept/bird-watcher/BirdWatcher.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bird-watcher/BirdWatcher.fsproj -------------------------------------------------------------------------------- /exercises/concept/bird-watcher/BirdWatcherTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/bird-watcher/BirdWatcherTests.fs -------------------------------------------------------------------------------- /exercises/concept/booking-up-for-beauty/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:datetimes} 4 | -------------------------------------------------------------------------------- /exercises/concept/cars-assemble/.docs/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/cars-assemble/.docs/hints.md -------------------------------------------------------------------------------- /exercises/concept/cars-assemble/.meta/Exemplar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/cars-assemble/.meta/Exemplar.fs -------------------------------------------------------------------------------- /exercises/concept/cars-assemble/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/cars-assemble/.meta/config.json -------------------------------------------------------------------------------- /exercises/concept/cars-assemble/.meta/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/cars-assemble/.meta/design.md -------------------------------------------------------------------------------- /exercises/concept/cars-assemble/CarsAssemble.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/cars-assemble/CarsAssemble.fs -------------------------------------------------------------------------------- /exercises/concept/cars-assemble/CarsAssemble.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/cars-assemble/CarsAssemble.fsproj -------------------------------------------------------------------------------- /exercises/concept/guessing-game/.docs/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/guessing-game/.docs/hints.md -------------------------------------------------------------------------------- /exercises/concept/guessing-game/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:pattern-matching} 4 | -------------------------------------------------------------------------------- /exercises/concept/guessing-game/.meta/Exemplar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/guessing-game/.meta/Exemplar.fs -------------------------------------------------------------------------------- /exercises/concept/guessing-game/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/guessing-game/.meta/config.json -------------------------------------------------------------------------------- /exercises/concept/guessing-game/.meta/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/guessing-game/.meta/design.md -------------------------------------------------------------------------------- /exercises/concept/guessing-game/GuessingGame.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/guessing-game/GuessingGame.fs -------------------------------------------------------------------------------- /exercises/concept/guessing-game/GuessingGame.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/guessing-game/GuessingGame.fsproj -------------------------------------------------------------------------------- /exercises/concept/interest-is-interesting/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:floating-point-numbers} 4 | -------------------------------------------------------------------------------- /exercises/concept/log-levels/.docs/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/log-levels/.docs/hints.md -------------------------------------------------------------------------------- /exercises/concept/log-levels/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/log-levels/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/concept/log-levels/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/log-levels/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/concept/log-levels/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:strings} 4 | -------------------------------------------------------------------------------- /exercises/concept/log-levels/.meta/Exemplar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/log-levels/.meta/Exemplar.fs -------------------------------------------------------------------------------- /exercises/concept/log-levels/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/log-levels/.meta/config.json -------------------------------------------------------------------------------- /exercises/concept/log-levels/.meta/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/log-levels/.meta/design.md -------------------------------------------------------------------------------- /exercises/concept/log-levels/LogLevels.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/log-levels/LogLevels.fs -------------------------------------------------------------------------------- /exercises/concept/log-levels/LogLevels.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/log-levels/LogLevels.fsproj -------------------------------------------------------------------------------- /exercises/concept/log-levels/LogLevelsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/log-levels/LogLevelsTests.fs -------------------------------------------------------------------------------- /exercises/concept/lucians-luscious-lasagna/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:basics} 4 | -------------------------------------------------------------------------------- /exercises/concept/pizza-pricing/.docs/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/pizza-pricing/.docs/hints.md -------------------------------------------------------------------------------- /exercises/concept/pizza-pricing/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:recursion} 4 | -------------------------------------------------------------------------------- /exercises/concept/pizza-pricing/.meta/Exemplar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/pizza-pricing/.meta/Exemplar.fs -------------------------------------------------------------------------------- /exercises/concept/pizza-pricing/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/pizza-pricing/.meta/config.json -------------------------------------------------------------------------------- /exercises/concept/pizza-pricing/.meta/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/pizza-pricing/.meta/design.md -------------------------------------------------------------------------------- /exercises/concept/pizza-pricing/PizzaPricing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/pizza-pricing/PizzaPricing.fs -------------------------------------------------------------------------------- /exercises/concept/pizza-pricing/PizzaPricing.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/pizza-pricing/PizzaPricing.fsproj -------------------------------------------------------------------------------- /exercises/concept/role-playing-game/.docs/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/role-playing-game/.docs/hints.md -------------------------------------------------------------------------------- /exercises/concept/role-playing-game/.meta/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/role-playing-game/.meta/design.md -------------------------------------------------------------------------------- /exercises/concept/squeaky-clean/.docs/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/squeaky-clean/.docs/hints.md -------------------------------------------------------------------------------- /exercises/concept/squeaky-clean/.meta/Exemplar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/squeaky-clean/.meta/Exemplar.fs -------------------------------------------------------------------------------- /exercises/concept/squeaky-clean/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/squeaky-clean/.meta/config.json -------------------------------------------------------------------------------- /exercises/concept/squeaky-clean/.meta/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/squeaky-clean/.meta/design.md -------------------------------------------------------------------------------- /exercises/concept/squeaky-clean/SqueakyClean.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/squeaky-clean/SqueakyClean.fs -------------------------------------------------------------------------------- /exercises/concept/squeaky-clean/SqueakyClean.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/squeaky-clean/SqueakyClean.fsproj -------------------------------------------------------------------------------- /exercises/concept/tisbury-treasure-hunt/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:tuples} 4 | -------------------------------------------------------------------------------- /exercises/concept/tracks-on-tracks-on-tracks/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:lists} 4 | -------------------------------------------------------------------------------- /exercises/concept/valentines-day/.docs/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/valentines-day/.docs/hints.md -------------------------------------------------------------------------------- /exercises/concept/valentines-day/.docs/introduction.md.tpl: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | %{concept:discriminated-unions} 4 | -------------------------------------------------------------------------------- /exercises/concept/valentines-day/.meta/Exemplar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/valentines-day/.meta/Exemplar.fs -------------------------------------------------------------------------------- /exercises/concept/valentines-day/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/valentines-day/.meta/config.json -------------------------------------------------------------------------------- /exercises/concept/valentines-day/.meta/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/valentines-day/.meta/design.md -------------------------------------------------------------------------------- /exercises/concept/valentines-day/ValentinesDay.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/concept/valentines-day/ValentinesDay.fs -------------------------------------------------------------------------------- /exercises/practice/accumulate/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/accumulate/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/accumulate/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/accumulate/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/accumulate/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/accumulate/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/accumulate/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/accumulate/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/accumulate/Accumulate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/accumulate/Accumulate.fs -------------------------------------------------------------------------------- /exercises/practice/accumulate/Accumulate.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/accumulate/Accumulate.fsproj -------------------------------------------------------------------------------- /exercises/practice/accumulate/AccumulateTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/accumulate/AccumulateTests.fs -------------------------------------------------------------------------------- /exercises/practice/acronym/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/acronym/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/acronym/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/acronym/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/acronym/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/acronym/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/acronym/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/acronym/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/acronym/Acronym.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/acronym/Acronym.fs -------------------------------------------------------------------------------- /exercises/practice/acronym/Acronym.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/acronym/Acronym.fsproj -------------------------------------------------------------------------------- /exercises/practice/acronym/AcronymTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/acronym/AcronymTests.fs -------------------------------------------------------------------------------- /exercises/practice/affine-cipher/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/affine-cipher/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/affine-cipher/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/affine-cipher/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/affine-cipher/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/affine-cipher/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/affine-cipher/AffineCipher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/affine-cipher/AffineCipher.fs -------------------------------------------------------------------------------- /exercises/practice/all-your-base/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/all-your-base/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/all-your-base/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/all-your-base/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/all-your-base/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/all-your-base/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/all-your-base/AllYourBase.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/all-your-base/AllYourBase.fs -------------------------------------------------------------------------------- /exercises/practice/all-your-base/AllYourBase.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/all-your-base/AllYourBase.fsproj -------------------------------------------------------------------------------- /exercises/practice/allergies/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/allergies/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/allergies/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/allergies/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/allergies/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/allergies/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/allergies/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/allergies/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/allergies/Allergies.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/allergies/Allergies.fs -------------------------------------------------------------------------------- /exercises/practice/allergies/Allergies.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/allergies/Allergies.fsproj -------------------------------------------------------------------------------- /exercises/practice/allergies/AllergiesTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/allergies/AllergiesTests.fs -------------------------------------------------------------------------------- /exercises/practice/alphametics/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/alphametics/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/alphametics/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/alphametics/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/alphametics/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/alphametics/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/alphametics/Alphametics.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/alphametics/Alphametics.fs -------------------------------------------------------------------------------- /exercises/practice/alphametics/Alphametics.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/alphametics/Alphametics.fsproj -------------------------------------------------------------------------------- /exercises/practice/alphametics/AlphameticsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/alphametics/AlphameticsTests.fs -------------------------------------------------------------------------------- /exercises/practice/anagram/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/anagram/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/anagram/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/anagram/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/anagram/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/anagram/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/anagram/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/anagram/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/anagram/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/anagram/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/anagram/Anagram.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/anagram/Anagram.fs -------------------------------------------------------------------------------- /exercises/practice/anagram/Anagram.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/anagram/Anagram.fsproj -------------------------------------------------------------------------------- /exercises/practice/anagram/AnagramTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/anagram/AnagramTests.fs -------------------------------------------------------------------------------- /exercises/practice/atbash-cipher/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/atbash-cipher/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/atbash-cipher/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/atbash-cipher/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/atbash-cipher/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/atbash-cipher/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/atbash-cipher/AtbashCipher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/atbash-cipher/AtbashCipher.fs -------------------------------------------------------------------------------- /exercises/practice/bank-account/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bank-account/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/bank-account/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bank-account/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/bank-account/BankAccount.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bank-account/BankAccount.fs -------------------------------------------------------------------------------- /exercises/practice/bank-account/BankAccount.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bank-account/BankAccount.fsproj -------------------------------------------------------------------------------- /exercises/practice/bank-account/BankAccountTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bank-account/BankAccountTests.fs -------------------------------------------------------------------------------- /exercises/practice/beer-song/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/beer-song/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/beer-song/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/beer-song/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/beer-song/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/beer-song/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/beer-song/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/beer-song/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/beer-song/BeerSong.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/beer-song/BeerSong.fs -------------------------------------------------------------------------------- /exercises/practice/beer-song/BeerSong.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/beer-song/BeerSong.fsproj -------------------------------------------------------------------------------- /exercises/practice/beer-song/BeerSongTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/beer-song/BeerSongTests.fs -------------------------------------------------------------------------------- /exercises/practice/binary-search/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary-search/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/binary-search/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary-search/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/binary-search/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary-search/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/binary-search/BinarySearch.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary-search/BinarySearch.fs -------------------------------------------------------------------------------- /exercises/practice/binary/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary/.config/dotnet-tools.json -------------------------------------------------------------------------------- /exercises/practice/binary/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/binary/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/binary/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/binary/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/binary/Binary.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary/Binary.fs -------------------------------------------------------------------------------- /exercises/practice/binary/Binary.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary/Binary.fsproj -------------------------------------------------------------------------------- /exercises/practice/binary/BinaryTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/binary/BinaryTests.fs -------------------------------------------------------------------------------- /exercises/practice/bob/.approaches/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.approaches/config.json -------------------------------------------------------------------------------- /exercises/practice/bob/.approaches/if/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.approaches/if/content.md -------------------------------------------------------------------------------- /exercises/practice/bob/.approaches/if/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.approaches/if/snippet.txt -------------------------------------------------------------------------------- /exercises/practice/bob/.approaches/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.approaches/introduction.md -------------------------------------------------------------------------------- /exercises/practice/bob/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.config/dotnet-tools.json -------------------------------------------------------------------------------- /exercises/practice/bob/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/bob/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/bob/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/bob/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/bob/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/bob/Bob.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/Bob.fs -------------------------------------------------------------------------------- /exercises/practice/bob/Bob.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/Bob.fsproj -------------------------------------------------------------------------------- /exercises/practice/bob/BobTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bob/BobTests.fs -------------------------------------------------------------------------------- /exercises/practice/book-store/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/book-store/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/book-store/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/book-store/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/book-store/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/book-store/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/book-store/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/book-store/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/book-store/BookStore.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/book-store/BookStore.fs -------------------------------------------------------------------------------- /exercises/practice/book-store/BookStore.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/book-store/BookStore.fsproj -------------------------------------------------------------------------------- /exercises/practice/book-store/BookStoreTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/book-store/BookStoreTests.fs -------------------------------------------------------------------------------- /exercises/practice/bottle-song/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bottle-song/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/bottle-song/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bottle-song/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/bottle-song/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bottle-song/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/bottle-song/BottleSong.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bottle-song/BottleSong.fs -------------------------------------------------------------------------------- /exercises/practice/bottle-song/BottleSong.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bottle-song/BottleSong.fsproj -------------------------------------------------------------------------------- /exercises/practice/bottle-song/BottleSongTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bottle-song/BottleSongTests.fs -------------------------------------------------------------------------------- /exercises/practice/bowling/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bowling/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/bowling/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bowling/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/bowling/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bowling/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/bowling/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bowling/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/bowling/Bowling.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bowling/Bowling.fs -------------------------------------------------------------------------------- /exercises/practice/bowling/Bowling.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bowling/Bowling.fsproj -------------------------------------------------------------------------------- /exercises/practice/bowling/BowlingTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/bowling/BowlingTests.fs -------------------------------------------------------------------------------- /exercises/practice/change/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/change/.config/dotnet-tools.json -------------------------------------------------------------------------------- /exercises/practice/change/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/change/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/change/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/change/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/change/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/change/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/change/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/change/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/change/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/change/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/change/Change.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/change/Change.fs -------------------------------------------------------------------------------- /exercises/practice/change/Change.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/change/Change.fsproj -------------------------------------------------------------------------------- /exercises/practice/change/ChangeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/change/ChangeTests.fs -------------------------------------------------------------------------------- /exercises/practice/circular-buffer/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/circular-buffer/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/circular-buffer/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/circular-buffer/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/clock/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/clock/.config/dotnet-tools.json -------------------------------------------------------------------------------- /exercises/practice/clock/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/clock/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/clock/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/clock/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/clock/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/clock/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/clock/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/clock/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/clock/Clock.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/clock/Clock.fs -------------------------------------------------------------------------------- /exercises/practice/clock/Clock.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/clock/Clock.fsproj -------------------------------------------------------------------------------- /exercises/practice/clock/ClockTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/clock/ClockTests.fs -------------------------------------------------------------------------------- /exercises/practice/complex-numbers/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/complex-numbers/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/complex-numbers/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/complex-numbers/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/connect/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/connect/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/connect/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/connect/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/connect/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/connect/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/connect/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/connect/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/connect/Connect.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/connect/Connect.fs -------------------------------------------------------------------------------- /exercises/practice/connect/Connect.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/connect/Connect.fsproj -------------------------------------------------------------------------------- /exercises/practice/connect/ConnectTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/connect/ConnectTests.fs -------------------------------------------------------------------------------- /exercises/practice/crypto-square/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/crypto-square/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/crypto-square/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/crypto-square/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/crypto-square/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/crypto-square/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/crypto-square/CryptoSquare.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/crypto-square/CryptoSquare.fs -------------------------------------------------------------------------------- /exercises/practice/custom-set/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/custom-set/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/custom-set/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/custom-set/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/custom-set/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/custom-set/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/custom-set/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/custom-set/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/custom-set/CustomSet.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/custom-set/CustomSet.fs -------------------------------------------------------------------------------- /exercises/practice/custom-set/CustomSet.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/custom-set/CustomSet.fsproj -------------------------------------------------------------------------------- /exercises/practice/custom-set/CustomSetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/custom-set/CustomSetTests.fs -------------------------------------------------------------------------------- /exercises/practice/darts/.approaches/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/darts/.approaches/config.json -------------------------------------------------------------------------------- /exercises/practice/darts/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/darts/.config/dotnet-tools.json -------------------------------------------------------------------------------- /exercises/practice/darts/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/darts/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/darts/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/darts/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/darts/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/darts/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/darts/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/darts/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/darts/Darts.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/darts/Darts.fs -------------------------------------------------------------------------------- /exercises/practice/darts/Darts.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/darts/Darts.fsproj -------------------------------------------------------------------------------- /exercises/practice/darts/DartsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/darts/DartsTests.fs -------------------------------------------------------------------------------- /exercises/practice/diamond/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diamond/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/diamond/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diamond/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/diamond/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diamond/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/diamond/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diamond/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/diamond/Diamond.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diamond/Diamond.fs -------------------------------------------------------------------------------- /exercises/practice/diamond/Diamond.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diamond/Diamond.fsproj -------------------------------------------------------------------------------- /exercises/practice/diamond/DiamondTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diamond/DiamondTests.fs -------------------------------------------------------------------------------- /exercises/practice/diffie-hellman/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diffie-hellman/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/diffie-hellman/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diffie-hellman/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/diffie-hellman/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diffie-hellman/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/diffie-hellman/DiffieHellman.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/diffie-hellman/DiffieHellman.fs -------------------------------------------------------------------------------- /exercises/practice/dnd-character/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dnd-character/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/dnd-character/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dnd-character/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/dnd-character/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dnd-character/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/dnd-character/DndCharacter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dnd-character/DndCharacter.fs -------------------------------------------------------------------------------- /exercises/practice/dominoes/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dominoes/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/dominoes/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dominoes/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/dominoes/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dominoes/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/dominoes/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dominoes/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/dominoes/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dominoes/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/dominoes/Dominoes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dominoes/Dominoes.fs -------------------------------------------------------------------------------- /exercises/practice/dominoes/Dominoes.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dominoes/Dominoes.fsproj -------------------------------------------------------------------------------- /exercises/practice/dominoes/DominoesTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dominoes/DominoesTests.fs -------------------------------------------------------------------------------- /exercises/practice/dot-dsl/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dot-dsl/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/dot-dsl/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dot-dsl/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/dot-dsl/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dot-dsl/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/dot-dsl/DotDsl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dot-dsl/DotDsl.fs -------------------------------------------------------------------------------- /exercises/practice/dot-dsl/DotDsl.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dot-dsl/DotDsl.fsproj -------------------------------------------------------------------------------- /exercises/practice/dot-dsl/DotDslTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/dot-dsl/DotDslTests.fs -------------------------------------------------------------------------------- /exercises/practice/eliuds-eggs/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/eliuds-eggs/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/eliuds-eggs/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/eliuds-eggs/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/eliuds-eggs/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/eliuds-eggs/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/eliuds-eggs/EliudsEggs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/eliuds-eggs/EliudsEggs.fs -------------------------------------------------------------------------------- /exercises/practice/eliuds-eggs/EliudsEggs.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/eliuds-eggs/EliudsEggs.fsproj -------------------------------------------------------------------------------- /exercises/practice/eliuds-eggs/EliudsEggsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/eliuds-eggs/EliudsEggsTests.fs -------------------------------------------------------------------------------- /exercises/practice/etl/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/etl/.config/dotnet-tools.json -------------------------------------------------------------------------------- /exercises/practice/etl/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/etl/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/etl/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/etl/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/etl/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/etl/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/etl/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/etl/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/etl/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/etl/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/etl/Etl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/etl/Etl.fs -------------------------------------------------------------------------------- /exercises/practice/etl/Etl.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/etl/Etl.fsproj -------------------------------------------------------------------------------- /exercises/practice/etl/EtlTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/etl/EtlTests.fs -------------------------------------------------------------------------------- /exercises/practice/flower-field/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/flower-field/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/flower-field/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/flower-field/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/flower-field/FlowerField.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/flower-field/FlowerField.fs -------------------------------------------------------------------------------- /exercises/practice/food-chain/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/food-chain/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/food-chain/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/food-chain/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/food-chain/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/food-chain/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/food-chain/FoodChain.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/food-chain/FoodChain.fs -------------------------------------------------------------------------------- /exercises/practice/food-chain/FoodChain.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/food-chain/FoodChain.fsproj -------------------------------------------------------------------------------- /exercises/practice/food-chain/FoodChainTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/food-chain/FoodChainTests.fs -------------------------------------------------------------------------------- /exercises/practice/forth/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/forth/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/forth/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/forth/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/forth/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/forth/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/forth/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/forth/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/forth/Forth.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/forth/Forth.fs -------------------------------------------------------------------------------- /exercises/practice/forth/Forth.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/forth/Forth.fsproj -------------------------------------------------------------------------------- /exercises/practice/forth/ForthTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/forth/ForthTests.fs -------------------------------------------------------------------------------- /exercises/practice/game-of-life/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/game-of-life/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/game-of-life/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/game-of-life/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/game-of-life/GameOfLife.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/game-of-life/GameOfLife.fs -------------------------------------------------------------------------------- /exercises/practice/gigasecond/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/gigasecond/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/gigasecond/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/gigasecond/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/gigasecond/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/gigasecond/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/gigasecond/Gigasecond.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/gigasecond/Gigasecond.fs -------------------------------------------------------------------------------- /exercises/practice/gigasecond/Gigasecond.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/gigasecond/Gigasecond.fsproj -------------------------------------------------------------------------------- /exercises/practice/gigasecond/GigasecondTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/gigasecond/GigasecondTests.fs -------------------------------------------------------------------------------- /exercises/practice/go-counting/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/go-counting/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/go-counting/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/go-counting/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/go-counting/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/go-counting/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/go-counting/GoCounting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/go-counting/GoCounting.fs -------------------------------------------------------------------------------- /exercises/practice/go-counting/GoCounting.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/go-counting/GoCounting.fsproj -------------------------------------------------------------------------------- /exercises/practice/grade-school/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grade-school/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/grade-school/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grade-school/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/grade-school/GradeSchool.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grade-school/GradeSchool.fs -------------------------------------------------------------------------------- /exercises/practice/grains/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grains/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/grains/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grains/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/grains/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grains/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/grains/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grains/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/grains/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grains/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/grains/Grains.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grains/Grains.fs -------------------------------------------------------------------------------- /exercises/practice/grains/Grains.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grains/Grains.fsproj -------------------------------------------------------------------------------- /exercises/practice/grains/GrainsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grains/GrainsTests.fs -------------------------------------------------------------------------------- /exercises/practice/grep/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grep/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/grep/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grep/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/grep/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grep/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/grep/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grep/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/grep/Grep.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grep/Grep.fs -------------------------------------------------------------------------------- /exercises/practice/grep/Grep.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grep/Grep.fsproj -------------------------------------------------------------------------------- /exercises/practice/grep/GrepTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/grep/GrepTests.fs -------------------------------------------------------------------------------- /exercises/practice/hamming/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hamming/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/hamming/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hamming/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/hamming/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hamming/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/hamming/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hamming/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/hamming/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hamming/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/hamming/Hamming.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hamming/Hamming.fs -------------------------------------------------------------------------------- /exercises/practice/hamming/Hamming.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hamming/Hamming.fsproj -------------------------------------------------------------------------------- /exercises/practice/hamming/HammingTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hamming/HammingTests.fs -------------------------------------------------------------------------------- /exercises/practice/hangman/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hangman/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/hangman/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hangman/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/hangman/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hangman/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/hangman/Hangman.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hangman/Hangman.fs -------------------------------------------------------------------------------- /exercises/practice/hangman/Hangman.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hangman/Hangman.fsproj -------------------------------------------------------------------------------- /exercises/practice/hangman/HangmanTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hangman/HangmanTests.fs -------------------------------------------------------------------------------- /exercises/practice/hello-world/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hello-world/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/hello-world/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hello-world/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/hello-world/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hello-world/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/hello-world/HelloWorld.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hello-world/HelloWorld.fs -------------------------------------------------------------------------------- /exercises/practice/hello-world/HelloWorld.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hello-world/HelloWorld.fsproj -------------------------------------------------------------------------------- /exercises/practice/hexadecimal/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hexadecimal/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/hexadecimal/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hexadecimal/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/hexadecimal/Hexadecimal.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/hexadecimal/Hexadecimal.fs -------------------------------------------------------------------------------- /exercises/practice/high-scores/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/high-scores/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/high-scores/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/high-scores/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/high-scores/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/high-scores/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/high-scores/HighScores.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/high-scores/HighScores.fs -------------------------------------------------------------------------------- /exercises/practice/high-scores/HighScores.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/high-scores/HighScores.fsproj -------------------------------------------------------------------------------- /exercises/practice/house/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/house/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/house/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/house/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/house/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/house/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/house/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/house/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/house/House.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/house/House.fs -------------------------------------------------------------------------------- /exercises/practice/house/House.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/house/House.fsproj -------------------------------------------------------------------------------- /exercises/practice/house/HouseTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/house/HouseTests.fs -------------------------------------------------------------------------------- /exercises/practice/isbn-verifier/IsbnVerifier.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/isbn-verifier/IsbnVerifier.fs -------------------------------------------------------------------------------- /exercises/practice/isogram/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/isogram/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/isogram/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/isogram/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/isogram/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/isogram/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/isogram/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/isogram/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/isogram/Isogram.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/isogram/Isogram.fs -------------------------------------------------------------------------------- /exercises/practice/isogram/Isogram.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/isogram/Isogram.fsproj -------------------------------------------------------------------------------- /exercises/practice/isogram/IsogramTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/isogram/IsogramTests.fs -------------------------------------------------------------------------------- /exercises/practice/knapsack/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/knapsack/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/knapsack/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/knapsack/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/knapsack/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/knapsack/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/knapsack/Knapsack.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/knapsack/Knapsack.fs -------------------------------------------------------------------------------- /exercises/practice/knapsack/Knapsack.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/knapsack/Knapsack.fsproj -------------------------------------------------------------------------------- /exercises/practice/knapsack/KnapsackTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/knapsack/KnapsackTests.fs -------------------------------------------------------------------------------- /exercises/practice/leap/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/leap/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/leap/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/leap/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/leap/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/leap/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/leap/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/leap/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/leap/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/leap/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/leap/Leap.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/leap/Leap.fs -------------------------------------------------------------------------------- /exercises/practice/leap/Leap.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/leap/Leap.fsproj -------------------------------------------------------------------------------- /exercises/practice/leap/LeapTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/leap/LeapTests.fs -------------------------------------------------------------------------------- /exercises/practice/ledger/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ledger/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/ledger/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ledger/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/ledger/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ledger/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/ledger/Ledger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ledger/Ledger.fs -------------------------------------------------------------------------------- /exercises/practice/ledger/Ledger.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ledger/Ledger.fsproj -------------------------------------------------------------------------------- /exercises/practice/ledger/LedgerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ledger/LedgerTests.fs -------------------------------------------------------------------------------- /exercises/practice/lens-person/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/lens-person/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/lens-person/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/lens-person/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/lens-person/LensPerson.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/lens-person/LensPerson.fs -------------------------------------------------------------------------------- /exercises/practice/lens-person/LensPerson.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/lens-person/LensPerson.fsproj -------------------------------------------------------------------------------- /exercises/practice/linked-list/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/linked-list/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/linked-list/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/linked-list/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/linked-list/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/linked-list/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/linked-list/LinkedList.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/linked-list/LinkedList.fs -------------------------------------------------------------------------------- /exercises/practice/linked-list/LinkedList.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/linked-list/LinkedList.fsproj -------------------------------------------------------------------------------- /exercises/practice/list-ops/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/list-ops/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/list-ops/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/list-ops/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/list-ops/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/list-ops/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/list-ops/ListOps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/list-ops/ListOps.fs -------------------------------------------------------------------------------- /exercises/practice/list-ops/ListOps.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/list-ops/ListOps.fsproj -------------------------------------------------------------------------------- /exercises/practice/list-ops/ListOpsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/list-ops/ListOpsTests.fs -------------------------------------------------------------------------------- /exercises/practice/luhn/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/luhn/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/luhn/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/luhn/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/luhn/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/luhn/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/luhn/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/luhn/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/luhn/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/luhn/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/luhn/Luhn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/luhn/Luhn.fs -------------------------------------------------------------------------------- /exercises/practice/luhn/Luhn.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/luhn/Luhn.fsproj -------------------------------------------------------------------------------- /exercises/practice/luhn/LuhnTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/luhn/LuhnTests.fs -------------------------------------------------------------------------------- /exercises/practice/markdown/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/markdown/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/markdown/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/markdown/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/markdown/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/markdown/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/markdown/Markdown.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/markdown/Markdown.fs -------------------------------------------------------------------------------- /exercises/practice/markdown/Markdown.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/markdown/Markdown.fsproj -------------------------------------------------------------------------------- /exercises/practice/markdown/MarkdownTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/markdown/MarkdownTests.fs -------------------------------------------------------------------------------- /exercises/practice/matrix/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/matrix/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/matrix/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/matrix/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/matrix/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/matrix/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/matrix/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/matrix/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/matrix/Matrix.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/matrix/Matrix.fs -------------------------------------------------------------------------------- /exercises/practice/matrix/Matrix.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/matrix/Matrix.fsproj -------------------------------------------------------------------------------- /exercises/practice/matrix/MatrixTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/matrix/MatrixTests.fs -------------------------------------------------------------------------------- /exercises/practice/meetup/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/meetup/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/meetup/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/meetup/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/meetup/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/meetup/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/meetup/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/meetup/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/meetup/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/meetup/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/meetup/Meetup.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/meetup/Meetup.fs -------------------------------------------------------------------------------- /exercises/practice/meetup/Meetup.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/meetup/Meetup.fsproj -------------------------------------------------------------------------------- /exercises/practice/meetup/MeetupTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/meetup/MeetupTests.fs -------------------------------------------------------------------------------- /exercises/practice/minesweeper/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/minesweeper/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/minesweeper/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/minesweeper/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/minesweeper/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/minesweeper/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/minesweeper/Minesweeper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/minesweeper/Minesweeper.fs -------------------------------------------------------------------------------- /exercises/practice/nth-prime/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/nth-prime/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/nth-prime/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/nth-prime/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/nth-prime/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/nth-prime/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/nth-prime/NthPrime.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/nth-prime/NthPrime.fs -------------------------------------------------------------------------------- /exercises/practice/nth-prime/NthPrime.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/nth-prime/NthPrime.fsproj -------------------------------------------------------------------------------- /exercises/practice/nth-prime/NthPrimeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/nth-prime/NthPrimeTests.fs -------------------------------------------------------------------------------- /exercises/practice/ocr-numbers/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ocr-numbers/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/ocr-numbers/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ocr-numbers/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/ocr-numbers/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ocr-numbers/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/ocr-numbers/OcrNumbers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ocr-numbers/OcrNumbers.fs -------------------------------------------------------------------------------- /exercises/practice/ocr-numbers/OcrNumbers.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/ocr-numbers/OcrNumbers.fsproj -------------------------------------------------------------------------------- /exercises/practice/octal/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/octal/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/octal/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/octal/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/octal/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/octal/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/octal/Octal.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/octal/Octal.fs -------------------------------------------------------------------------------- /exercises/practice/octal/Octal.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/octal/Octal.fsproj -------------------------------------------------------------------------------- /exercises/practice/octal/OctalTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/octal/OctalTests.fs -------------------------------------------------------------------------------- /exercises/practice/pangram/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pangram/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/pangram/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pangram/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/pangram/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pangram/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/pangram/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pangram/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/pangram/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pangram/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/pangram/Pangram.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pangram/Pangram.fs -------------------------------------------------------------------------------- /exercises/practice/pangram/Pangram.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pangram/Pangram.fsproj -------------------------------------------------------------------------------- /exercises/practice/pangram/PangramTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pangram/PangramTests.fs -------------------------------------------------------------------------------- /exercises/practice/phone-number/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/phone-number/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/phone-number/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/phone-number/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/phone-number/PhoneNumber.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/phone-number/PhoneNumber.fs -------------------------------------------------------------------------------- /exercises/practice/pig-latin/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pig-latin/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/pig-latin/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pig-latin/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/pig-latin/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pig-latin/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/pig-latin/PigLatin.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pig-latin/PigLatin.fs -------------------------------------------------------------------------------- /exercises/practice/pig-latin/PigLatin.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pig-latin/PigLatin.fsproj -------------------------------------------------------------------------------- /exercises/practice/pig-latin/PigLatinTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pig-latin/PigLatinTests.fs -------------------------------------------------------------------------------- /exercises/practice/poker/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/poker/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/poker/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/poker/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/poker/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/poker/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/poker/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/poker/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/poker/Poker.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/poker/Poker.fs -------------------------------------------------------------------------------- /exercises/practice/poker/Poker.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/poker/Poker.fsproj -------------------------------------------------------------------------------- /exercises/practice/poker/PokerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/poker/PokerTests.fs -------------------------------------------------------------------------------- /exercises/practice/pov/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pov/.config/dotnet-tools.json -------------------------------------------------------------------------------- /exercises/practice/pov/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pov/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/pov/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pov/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/pov/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pov/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/pov/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pov/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/pov/Pov.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pov/Pov.fs -------------------------------------------------------------------------------- /exercises/practice/pov/Pov.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pov/Pov.fsproj -------------------------------------------------------------------------------- /exercises/practice/pov/PovTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/pov/PovTests.fs -------------------------------------------------------------------------------- /exercises/practice/prime-factors/PrimeFactors.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/prime-factors/PrimeFactors.fs -------------------------------------------------------------------------------- /exercises/practice/proverb/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/proverb/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/proverb/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/proverb/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/proverb/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/proverb/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/proverb/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/proverb/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/proverb/Proverb.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/proverb/Proverb.fs -------------------------------------------------------------------------------- /exercises/practice/proverb/Proverb.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/proverb/Proverb.fsproj -------------------------------------------------------------------------------- /exercises/practice/proverb/ProverbTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/proverb/ProverbTests.fs -------------------------------------------------------------------------------- /exercises/practice/queen-attack/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/queen-attack/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/queen-attack/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/queen-attack/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/queen-attack/QueenAttack.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/queen-attack/QueenAttack.fs -------------------------------------------------------------------------------- /exercises/practice/raindrops/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/raindrops/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/raindrops/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/raindrops/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/raindrops/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/raindrops/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/raindrops/Raindrops.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/raindrops/Raindrops.fs -------------------------------------------------------------------------------- /exercises/practice/raindrops/Raindrops.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/raindrops/Raindrops.fsproj -------------------------------------------------------------------------------- /exercises/practice/raindrops/RaindropsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/raindrops/RaindropsTests.fs -------------------------------------------------------------------------------- /exercises/practice/react/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/react/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/react/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/react/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/react/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/react/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/react/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/react/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/react/React.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/react/React.fs -------------------------------------------------------------------------------- /exercises/practice/react/React.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/react/React.fsproj -------------------------------------------------------------------------------- /exercises/practice/react/ReactTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/react/ReactTests.fs -------------------------------------------------------------------------------- /exercises/practice/rectangles/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rectangles/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/rectangles/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rectangles/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/rectangles/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rectangles/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/rectangles/Rectangles.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rectangles/Rectangles.fs -------------------------------------------------------------------------------- /exercises/practice/rectangles/Rectangles.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rectangles/Rectangles.fsproj -------------------------------------------------------------------------------- /exercises/practice/rectangles/RectanglesTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rectangles/RectanglesTests.fs -------------------------------------------------------------------------------- /exercises/practice/rest-api/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rest-api/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/rest-api/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rest-api/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/rest-api/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rest-api/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/rest-api/RestApi.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rest-api/RestApi.fs -------------------------------------------------------------------------------- /exercises/practice/rest-api/RestApi.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rest-api/RestApi.fsproj -------------------------------------------------------------------------------- /exercises/practice/rest-api/RestApiTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/rest-api/RestApiTests.fs -------------------------------------------------------------------------------- /exercises/practice/robot-name/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/robot-name/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/robot-name/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/robot-name/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/robot-name/RobotName.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/robot-name/RobotName.fs -------------------------------------------------------------------------------- /exercises/practice/robot-name/RobotName.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/robot-name/RobotName.fsproj -------------------------------------------------------------------------------- /exercises/practice/robot-name/RobotNameTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/robot-name/RobotNameTests.fs -------------------------------------------------------------------------------- /exercises/practice/saddle-points/SaddlePoints.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/saddle-points/SaddlePoints.fs -------------------------------------------------------------------------------- /exercises/practice/satellite/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/satellite/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/satellite/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/satellite/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/satellite/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/satellite/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/satellite/Satellite.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/satellite/Satellite.fs -------------------------------------------------------------------------------- /exercises/practice/satellite/Satellite.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/satellite/Satellite.fsproj -------------------------------------------------------------------------------- /exercises/practice/satellite/SatelliteTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/satellite/SatelliteTests.fs -------------------------------------------------------------------------------- /exercises/practice/say/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/say/.config/dotnet-tools.json -------------------------------------------------------------------------------- /exercises/practice/say/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/say/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/say/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/say/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/say/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/say/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/say/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/say/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/say/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/say/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/say/Say.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/say/Say.fs -------------------------------------------------------------------------------- /exercises/practice/say/Say.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/say/Say.fsproj -------------------------------------------------------------------------------- /exercises/practice/say/SayTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/say/SayTests.fs -------------------------------------------------------------------------------- /exercises/practice/series/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/series/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/series/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/series/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/series/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/series/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/series/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/series/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/series/Series.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/series/Series.fs -------------------------------------------------------------------------------- /exercises/practice/series/Series.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/series/Series.fsproj -------------------------------------------------------------------------------- /exercises/practice/series/SeriesTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/series/SeriesTests.fs -------------------------------------------------------------------------------- /exercises/practice/sgf-parsing/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sgf-parsing/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/sgf-parsing/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sgf-parsing/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/sgf-parsing/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sgf-parsing/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/sgf-parsing/SgfParsing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sgf-parsing/SgfParsing.fs -------------------------------------------------------------------------------- /exercises/practice/sgf-parsing/SgfParsing.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sgf-parsing/SgfParsing.fsproj -------------------------------------------------------------------------------- /exercises/practice/sieve/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sieve/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/sieve/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sieve/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/sieve/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sieve/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/sieve/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sieve/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/sieve/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sieve/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/sieve/Sieve.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sieve/Sieve.fs -------------------------------------------------------------------------------- /exercises/practice/sieve/Sieve.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sieve/Sieve.fsproj -------------------------------------------------------------------------------- /exercises/practice/sieve/SieveTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sieve/SieveTests.fs -------------------------------------------------------------------------------- /exercises/practice/simple-cipher/SimpleCipher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/simple-cipher/SimpleCipher.fs -------------------------------------------------------------------------------- /exercises/practice/space-age/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/space-age/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/space-age/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/space-age/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/space-age/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/space-age/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/space-age/SpaceAge.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/space-age/SpaceAge.fs -------------------------------------------------------------------------------- /exercises/practice/space-age/SpaceAge.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/space-age/SpaceAge.fsproj -------------------------------------------------------------------------------- /exercises/practice/space-age/SpaceAgeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/space-age/SpaceAgeTests.fs -------------------------------------------------------------------------------- /exercises/practice/spiral-matrix/SpiralMatrix.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/spiral-matrix/SpiralMatrix.fs -------------------------------------------------------------------------------- /exercises/practice/square-root/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/square-root/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/square-root/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/square-root/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/square-root/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/square-root/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/square-root/SquareRoot.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/square-root/SquareRoot.fs -------------------------------------------------------------------------------- /exercises/practice/square-root/SquareRoot.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/square-root/SquareRoot.fsproj -------------------------------------------------------------------------------- /exercises/practice/strain/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/strain/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/strain/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/strain/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/strain/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/strain/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/strain/Strain.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/strain/Strain.fs -------------------------------------------------------------------------------- /exercises/practice/strain/Strain.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/strain/Strain.fsproj -------------------------------------------------------------------------------- /exercises/practice/strain/StrainTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/strain/StrainTests.fs -------------------------------------------------------------------------------- /exercises/practice/sublist/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sublist/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/sublist/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sublist/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/sublist/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sublist/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/sublist/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sublist/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/sublist/Sublist.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sublist/Sublist.fs -------------------------------------------------------------------------------- /exercises/practice/sublist/Sublist.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sublist/Sublist.fsproj -------------------------------------------------------------------------------- /exercises/practice/sublist/SublistTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/sublist/SublistTests.fs -------------------------------------------------------------------------------- /exercises/practice/tournament/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/tournament/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/tournament/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/tournament/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/tournament/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/tournament/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/tournament/Tournament.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/tournament/Tournament.fs -------------------------------------------------------------------------------- /exercises/practice/tournament/Tournament.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/tournament/Tournament.fsproj -------------------------------------------------------------------------------- /exercises/practice/tournament/TournamentTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/tournament/TournamentTests.fs -------------------------------------------------------------------------------- /exercises/practice/transpose/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/transpose/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/transpose/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/transpose/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/transpose/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/transpose/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/transpose/Transpose.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/transpose/Transpose.fs -------------------------------------------------------------------------------- /exercises/practice/transpose/Transpose.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/transpose/Transpose.fsproj -------------------------------------------------------------------------------- /exercises/practice/transpose/TransposeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/transpose/TransposeTests.fs -------------------------------------------------------------------------------- /exercises/practice/tree-building/Benchmark.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/tree-building/Benchmark.fs -------------------------------------------------------------------------------- /exercises/practice/tree-building/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/tree-building/Program.fs -------------------------------------------------------------------------------- /exercises/practice/tree-building/TreeBuilding.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/tree-building/TreeBuilding.fs -------------------------------------------------------------------------------- /exercises/practice/triangle/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/triangle/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/triangle/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/triangle/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/triangle/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/triangle/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/triangle/Triangle.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/triangle/Triangle.fs -------------------------------------------------------------------------------- /exercises/practice/triangle/Triangle.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/triangle/Triangle.fsproj -------------------------------------------------------------------------------- /exercises/practice/triangle/TriangleTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/triangle/TriangleTests.fs -------------------------------------------------------------------------------- /exercises/practice/trinary/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/trinary/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/trinary/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/trinary/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/trinary/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/trinary/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/trinary/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/trinary/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/trinary/Trinary.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/trinary/Trinary.fs -------------------------------------------------------------------------------- /exercises/practice/trinary/Trinary.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/trinary/Trinary.fsproj -------------------------------------------------------------------------------- /exercises/practice/trinary/TrinaryTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/trinary/TrinaryTests.fs -------------------------------------------------------------------------------- /exercises/practice/twelve-days/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/twelve-days/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/twelve-days/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/twelve-days/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/twelve-days/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/twelve-days/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/twelve-days/TwelveDays.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/twelve-days/TwelveDays.fs -------------------------------------------------------------------------------- /exercises/practice/twelve-days/TwelveDays.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/twelve-days/TwelveDays.fsproj -------------------------------------------------------------------------------- /exercises/practice/two-bucket/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-bucket/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/two-bucket/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-bucket/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/two-bucket/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-bucket/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/two-bucket/TwoBucket.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-bucket/TwoBucket.fs -------------------------------------------------------------------------------- /exercises/practice/two-bucket/TwoBucket.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-bucket/TwoBucket.fsproj -------------------------------------------------------------------------------- /exercises/practice/two-bucket/TwoBucketTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-bucket/TwoBucketTests.fs -------------------------------------------------------------------------------- /exercises/practice/two-fer/.articles/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-fer/.articles/config.json -------------------------------------------------------------------------------- /exercises/practice/two-fer/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-fer/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/two-fer/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-fer/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/two-fer/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-fer/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/two-fer/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-fer/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/two-fer/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-fer/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/two-fer/TwoFer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-fer/TwoFer.fs -------------------------------------------------------------------------------- /exercises/practice/two-fer/TwoFer.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-fer/TwoFer.fsproj -------------------------------------------------------------------------------- /exercises/practice/two-fer/TwoFerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/two-fer/TwoFerTests.fs -------------------------------------------------------------------------------- /exercises/practice/word-count/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-count/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/word-count/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-count/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/word-count/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-count/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/word-count/WordCount.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-count/WordCount.fs -------------------------------------------------------------------------------- /exercises/practice/word-count/WordCount.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-count/WordCount.fsproj -------------------------------------------------------------------------------- /exercises/practice/word-count/WordCountTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-count/WordCountTests.fs -------------------------------------------------------------------------------- /exercises/practice/word-search/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-search/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/word-search/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-search/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/word-search/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-search/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/word-search/WordSearch.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-search/WordSearch.fs -------------------------------------------------------------------------------- /exercises/practice/word-search/WordSearch.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/word-search/WordSearch.fsproj -------------------------------------------------------------------------------- /exercises/practice/wordy/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/wordy/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/wordy/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/wordy/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/wordy/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/wordy/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/wordy/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/wordy/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/wordy/Wordy.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/wordy/Wordy.fs -------------------------------------------------------------------------------- /exercises/practice/wordy/Wordy.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/wordy/Wordy.fsproj -------------------------------------------------------------------------------- /exercises/practice/wordy/WordyTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/wordy/WordyTests.fs -------------------------------------------------------------------------------- /exercises/practice/yacht/.approaches/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/yacht/.approaches/config.json -------------------------------------------------------------------------------- /exercises/practice/yacht/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/yacht/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/yacht/.docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/yacht/.docs/introduction.md -------------------------------------------------------------------------------- /exercises/practice/yacht/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/yacht/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/yacht/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/yacht/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/yacht/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/yacht/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/yacht/Yacht.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/yacht/Yacht.fs -------------------------------------------------------------------------------- /exercises/practice/yacht/Yacht.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/yacht/Yacht.fsproj -------------------------------------------------------------------------------- /exercises/practice/yacht/YachtTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/yacht/YachtTests.fs -------------------------------------------------------------------------------- /exercises/practice/zebra-puzzle/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zebra-puzzle/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/zebra-puzzle/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zebra-puzzle/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/zebra-puzzle/ZebraPuzzle.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zebra-puzzle/ZebraPuzzle.fs -------------------------------------------------------------------------------- /exercises/practice/zipper/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zipper/.docs/instructions.md -------------------------------------------------------------------------------- /exercises/practice/zipper/.meta/Example.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zipper/.meta/Example.fs -------------------------------------------------------------------------------- /exercises/practice/zipper/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zipper/.meta/config.json -------------------------------------------------------------------------------- /exercises/practice/zipper/.meta/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zipper/.meta/tests.toml -------------------------------------------------------------------------------- /exercises/practice/zipper/Zipper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zipper/Zipper.fs -------------------------------------------------------------------------------- /exercises/practice/zipper/Zipper.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zipper/Zipper.fsproj -------------------------------------------------------------------------------- /exercises/practice/zipper/ZipperTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/practice/zipper/ZipperTests.fs -------------------------------------------------------------------------------- /exercises/shared/.docs/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/shared/.docs/help.md -------------------------------------------------------------------------------- /exercises/shared/.docs/representations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/shared/.docs/representations.md -------------------------------------------------------------------------------- /exercises/shared/.docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/exercises/shared/.docs/tests.md -------------------------------------------------------------------------------- /generate-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generate-tests.ps1 -------------------------------------------------------------------------------- /generators/Common.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Common.fs -------------------------------------------------------------------------------- /generators/Exercise.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Exercise.fs -------------------------------------------------------------------------------- /generators/Generators.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Generators.fs -------------------------------------------------------------------------------- /generators/Generators.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Generators.fsproj -------------------------------------------------------------------------------- /generators/Generators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Generators.sln -------------------------------------------------------------------------------- /generators/Options.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Options.fs -------------------------------------------------------------------------------- /generators/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Program.fs -------------------------------------------------------------------------------- /generators/Rendering.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Rendering.fs -------------------------------------------------------------------------------- /generators/Templates.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Templates.fs -------------------------------------------------------------------------------- /generators/Templates/_AssertEmpty.liquid: -------------------------------------------------------------------------------- 1 | {{ Sut }} |> should be Empty -------------------------------------------------------------------------------- /generators/Templates/_AssertEqual.liquid: -------------------------------------------------------------------------------- 1 | {{ Sut }} |> should equal {{ Expected }} -------------------------------------------------------------------------------- /generators/Templates/_AssertEqualWithin.liquid: -------------------------------------------------------------------------------- 1 | {{ Sut }} |> should (equalWithin 0.01) {{ Expected }} -------------------------------------------------------------------------------- /generators/Templates/_AssertThrows.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Templates/_AssertThrows.liquid -------------------------------------------------------------------------------- /generators/Templates/_TestClass.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Templates/_TestClass.liquid -------------------------------------------------------------------------------- /generators/Templates/_TestFunction.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Templates/_TestFunction.liquid -------------------------------------------------------------------------------- /generators/Templates/_TestFunctionBody.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Templates/_TestFunctionBody.liquid -------------------------------------------------------------------------------- /generators/Templates/_TestMember.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Templates/_TestMember.liquid -------------------------------------------------------------------------------- /generators/Templates/_TestMemberBody.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Templates/_TestMemberBody.liquid -------------------------------------------------------------------------------- /generators/Templates/_TestModule.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Templates/_TestModule.liquid -------------------------------------------------------------------------------- /generators/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/generators/Tests.fs -------------------------------------------------------------------------------- /reference/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/reference/concepts.md -------------------------------------------------------------------------------- /reference/exercise-concepts/bob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/reference/exercise-concepts/bob.md -------------------------------------------------------------------------------- /reference/exercise-concepts/book-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/reference/exercise-concepts/book-store.md -------------------------------------------------------------------------------- /reference/exercise-concepts/meetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/reference/exercise-concepts/meetup.md -------------------------------------------------------------------------------- /reference/implementing-a-concept-exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/reference/implementing-a-concept-exercise.md -------------------------------------------------------------------------------- /shared.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/shared.ps1 -------------------------------------------------------------------------------- /tools/CodeFenceChecker/CodeFenceChecker.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/tools/CodeFenceChecker/CodeFenceChecker.fsproj -------------------------------------------------------------------------------- /tools/CodeFenceChecker/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/tools/CodeFenceChecker/Program.fs -------------------------------------------------------------------------------- /tools/CodeFenceChecker/Wrapper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/tools/CodeFenceChecker/Wrapper.fs -------------------------------------------------------------------------------- /update-docs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/fsharp/HEAD/update-docs.ps1 --------------------------------------------------------------------------------