Skip to content

Instantly share code, notes, and snippets.

View matpalm's full-sized avatar
🎯
Focusing

mat kelcey matpalm

🎯
Focusing
View GitHub Profile
-module(median).
-export([from_file/1,from_list/1]).
from_file(File) ->
io:format("~w\n",[from_list(parse_file:to_list(File))]),
init:stop().
from_list(List) ->
nth_order_stat(round(length(List)/2), List).