python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Symmetric Relation Recursive SML
Define a recursive predicate in ML isRelationSymmetric that accepts a relation r (represented as a list of tuples) and returns true if r is symmetric and false otherwise.
Here is what I have so far.
f...
jwolf
Votes: 0
Answers: 2
Composistion in SML (Discreate Math and Functional Programming)
I need to define a recursive ML function composition that accepts two relations and returns the composition of the two relations. I need to use the thhisIsTheImageOf and createRelationFromImage functi...
jwolf
Votes: 0
Answers: 1
Recusive ML function of exponential with three variable helper function
I need help figuring out what I need to do for the helper function recursively, I am kinda lost of in what I need to do for the helper function.
Here is the question and the example input.
Here is th...
jwolf
Votes: 0
Answers: 1
SML Uncaught Exception Empty
I am quite new to SML and am trying to implement a selection sort. I am running into an uncaught empty error however and can't seem to see why.
fun removeMin lst =
let
val (m, l) = removeMin(tl ...

Psycho Bunnies
Votes: 0
Answers: 1