99 questions/Solutions/89: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

10 January 2017

5 March 2011

  • curprev 23:3123:31, 5 March 2011Jagbolanos talk contribs 1,147 bytes +1,147 New page: <haskell> import Data.List type Node = Int type Edge = (Node,Node) type Graph = ([Node],[Edge]) dfsbipartite :: Graph -> [(Node, Int)] -> [Node] -> [Node] -> Bool dfsbipartite ([],_) _ _...