Skip to content

Instantly share code, notes, and snippets.

View eduardoklosowski's full-sized avatar

Eduardo Klosowski eduardoklosowski

View GitHub Profile
import System.Environment
import Data.List
type Elemento = String
type Par = (Elemento, Elemento)
type Custo = Int
type Aresta = (Par, Custo)
type Grafo = [Aresta]