F# is a succinct, expressive, and efficient functional and object-oriented language for .NET
2
votes
0answers
34 views
Dijkstra algorithm implementation in F#
I'm trying to implement Dijkstra algorithm in F# for finding the shortest path in a undirected tree using a heap.
I've used the type PriorityQueue found here and the code can be found here.
...
0
votes
0answers
42 views
How do I compile time enforce domain values go into the dal? [on hold]
I'm hoping to find a way to solidify the compile-time safety of calls into the domain layer. but any suggestions/ideas are welcomed.
Schema.generated.fs
...
0
votes
0answers
11 views
F# Cache manager
This is a port of a C# cache manager we use to F#, this is my first F# code, and I've tried to make it as idiomatic as possible. I would appreciate input on style, performance ...
3
votes
1answer
16 views
Factory pattern in F# for a web scraper
I'm trying to learn F# by creating a little web scraper that will do custom scraping based on the url domain. For this, I need to create and select the correct kind of scraper. I figure I would use a ...
2
votes
1answer
81 views
Project Euler Q7 - 10001st prime
The problem is (source)...
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.
What is the 10001st prime number?
This is my second attempt ...
0
votes
0answers
19 views
Create a collection of binaries with random set positions
I would like to create a collection of binaries with n set bits and total length should be between n and 31; also those set bits ...
2
votes
1answer
29 views
4
votes
1answer
87 views
Project Euler Q2 - Sum of even Fibonacci numbers
I'm very new at F#, and am using Project Euler to help me learn. Question #2 kept me going for a while, as my initial attempt at an answer was very slow and inelegant. Then I learnt about Seq.unfold, ...
4
votes
1answer
81 views
Solution to Project Euler problem 5 (LCM of 1 to 20)
I'm an experienced C# developer trying to teach myself F#. I spent a day or 3 reading throught the F# wikibook trying to get to know the syntax and F# fundamentals.
As an exercise I'm trying to go ...
4
votes
2answers
80 views
F# code to check whether there are three same digits within a given number
I came across this problem by accident and gave it a go. I think my solution works as it has passed all the unit tests I wrote. Given I just started learning F# a couple of weeks I would love to have ...
5
votes
1answer
51 views
Solving adventcode day 6 puzzle: toggling lights in a grid
I have solved the day 6 adventcode problem:
--- Day 6: Probably a Fire Hazard ---
Because your neighbors keep defeating you in the holiday house
decorating contest year after year, you've ...
7
votes
1answer
56 views
Prime factorization in F#
In the pursuit of learning F#, I have been working through some Project Euler problems.
This is my solution for problem 3:
...
4
votes
1answer
56 views
Finding the largest prime factor
As many people will undoubtedly recognise, this is a question in a well known series of problems that I won't name ;)
It's been a long time since I've written any F# and I'm not sure I've ever come ...
8
votes
1answer
58 views
World's worst Christmas tree
Inspired by this question, I decided to grow my own fractal tree.
The problem is: given an integer \$n\$, \$0 \leq n \leq 5\$, print the \$n\$th iteration of the fractal tree. The tree is probably ...
5
votes
2answers
65 views
Constructing a simple tree with ASCII in F#
This is just a basic HackerRank challenge I was working on to better understand F#. Its purpose is just to print a tree that has a straight 'trunk' of \$n\$, splits into 2 branches which diverge to ...
14
votes
4answers
701 views
Project Euler 6: Difference between sum of squares and square of sum
I've created a (very) simple solution for Project Euler problem 6:
Project Euler Problem 6: Sum square difference
The sum of the squares of the first ten natural numbers is,
$$ 1^2 + 2^2 ...
5
votes
1answer
204 views
Project Euler Problems #1-#5
Since I've been playing with F#, I decided to try my hand at implementing some of the Project Euler problems, and I've been having a blast doing it. (f#-is-fun)
So, I'm going to list all the Project ...
9
votes
2answers
312 views
F#zzBuzz: Learning the easy way
So I made a quick programme in F# to do FizzBuzz, I'm trying to learn more languages, so I figured I'd do something functional for a change. (Haskell is also on the list.)
FizzBuzz is pretty ...
3
votes
2answers
55 views
Find unique variants of a product
I am writing a piece of code that returns all the unique variants that a product is available in for an ecommerce app. For example, a shirt product can be available in different colors, sizes, and ...
2
votes
1answer
22 views
Digit Power Sum with BigInteger
This is my 1st F# program so I'm open to any and all criticism on my syntax and the way I approached the problem.
Challenge
Project Euler 16: Power Digit Sum
2^15 = 32768 and the sum of its digits ...
2
votes
2answers
48 views
Summations and products, and factorials oh my
The proper title of this question should be "Summations and products, and factorials oh my!".
After getting quite a bit of useful feedback on this question from @mjolka, and a comment, I decided ...
3
votes
1answer
76 views
Trying to do Type-Driven Development in F#
I've been wanting to try out F# for some real world programming so I decided to try rewriting a program that is being used at work.
It can be reduced to a few steps:
Get report templates.
In this ...
2
votes
1answer
51 views
Summations and products in F#
I was bored, and looking to do something that involved anonymous functions, and it was suggested by @Quill, that I create a summation function. I decided to also include a product function as well to ...
3
votes
1answer
58 views
Renaming video files based on episode title lookup
I'm new to F#, so I've ported an old Python script I have to F#. It scans a directory for files named something like Game.Of.Thrones.S01E02.xvidblahblah.mp4 or ...
1
vote
1answer
46 views
Creating a structured category list in F#
This takes a list of categories and organizes them into a tree-type structure based on their parentId. This code works, but is obviously a little over-complicated. ...
1
vote
0answers
51 views
5
votes
1answer
49 views
Lindenmayer System String Generator in F#
Lindenmayer Systems or L-systems are fractals that can be constructed by applying replacement rules to a string for a certain amount of iterations. For example:
...
7
votes
1answer
107 views
Small game written in F#
I'm trying to wrap my head around F#. I'd like your honest opinion about this simple game source code that I wrote. Rules are simple:
Every player has soldiers and territory
Player can recruit ...
2
votes
1answer
69 views
Utopian Tree in F#
This is the Utopian Tree in F# (from HackerRank)
The Utopian tree goes through 2 cycles of growth every year. The first
growth cycle of the tree occurs during the monsoon, when it doubles in
...
6
votes
1answer
96 views
Hello Functional World: Counting occurrences of each letter
Coming from a OO (C#) background, I am trying to learn some FP. To help me transition, I am trying to learn F#. I am taking baby steps.
I set myself a simple challenge to count the instances of each ...
5
votes
2answers
98 views
Add two numbers stored as a list in F#
I am solving the following problem:
You are given two lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the ...
6
votes
1answer
332 views
Game of life in F#
First attempt at doing anything F#-y from a very heavy C# background, think I've grasped the fundamentals of FP, but always good to get other eyes on it:
...
5
votes
2answers
409 views
Mock/Stub out filesystem in F# for unit testing
I'm looking to do some basic verification testing on my functions that write to the filesystem.
I took a hint from here on how to mock out the filesystem using an interface, but I'm kinda bummed on ...
4
votes
2answers
84 views
Reverse Polish Notation in F#
In my question to learn F#, I've decided to get one step closer to creating a programming language, and implement this simple Reverse Polish Notation "interpreter" of sorts.
It does not allow for ...
7
votes
1answer
144 views
Efficient generic type conversion between numeric types in F#
It's easy to write a function that adds two ints in F#:
let add x y = x + y
Actually, it's the same as:
...
9
votes
2answers
114 views
Simple inventory system - Part 2
I've refactored my previous inventory system, and added a few features like removing items from the Inventory class, easily obtaining the current selected item ...
6
votes
1answer
421 views
Very simple inventory system
To learn F#, I've implemented this very simple inventory system. While I'm proud that that it's my first program, and that it works, there are still a few areas that I'd like tips on, namely these:
...
5
votes
2answers
237 views
Reading input from console in F# (as a sequence of lines)
Consuming input line-by-line until the end is often useful. In C# I would write the following loop while ((line = Console.ReadLine()) != null) {.
I wanted to do ...
3
votes
1answer
135 views
Building and flattening a dependency graph
The Problem
Given a list of dependencies ('a * 'a) list where the first item has a dependency on the second item, construct a dependency graph and then 'flatten' ...
3
votes
1answer
60 views
Projecting future positions
My code takes a starting position (which must be completed) and a list of updates (each element of which is optional). It then projects future positions, using the appropriate value from each update, ...
5
votes
1answer
225 views
Sudoku game logic
I am trying to create a Sudoku game in F# and I'm having a bit of trouble with the file reading and writing. But since I've also just started programming in f# I would like to check if my thinking is ...
0
votes
2answers
145 views
Extracting meta data from nupkg file with F# looks like C# Linq
The code snippet below examines a nuget package file (zip file with meta) and extracts all file names referenced inside. The final result should be a ...
1
vote
1answer
191 views
Saving an uploaded file and returning form data
I am new to F#. This code is basically a port I did from C#. I am sure there is room for a ton of improvement, so how can I improve and make this more efficient?
...
4
votes
0answers
197 views
Aggregation of values over a hierarchy
I have a number of objects of a type Workplace that exist in a hierarchy that is given by some properties (Department, ...
6
votes
1answer
125 views
Test file word cloud in F#
This code is meant to take in a command line argument and output a 'tag cloud'. It's more of an exercise in learning F# for me because this is my first non-tutorial code file. How could this code be ...
7
votes
1answer
135 views
Small console app to execute some remote scripts
I'm learning F# and functional programming, from a background in C# and imperative/OOP. I've ported a small, one-off console app from C# to F#. The port worked (the app behaves the same way), but I'd ...
8
votes
1answer
198 views
Brainfuck interpreter in F#
I have some concerns, like the updateValue function. I was trying to follow the functional paradigm, but I wonder if I could use another approach or something.
My ...
1
vote
2answers
46 views
Better yielding tuple-d union case values in list generation
I have a situation where I'm stitching three different unions into a triplet tuple for building a map/dictionary of strongly typed values keyed on a string.
One of the union cases is very large, the ...
4
votes
1answer
181 views
Command Dispatcher for messaging using MailboxProcessor
This code is intended to process commands in a CQRS+Messaging system. It will parallelize the message processing to the degree you specify by the msgToIdFn ...
3
votes
1answer
93 views
Finding a customer's gender
I have been playing with Async/parallel execution in entity framework for while. I'm not sure if I'm doing it right.
I have two entity contexts: one for reading and one for writing. The reading ...