Skip to content

Instantly share code, notes, and snippets.

@schacon
Created August 23, 2008 01:01
Show Gist options
  • Save schacon/6883 to your computer and use it in GitHub Desktop.
Save schacon/6883 to your computer and use it in GitHub Desktop.
-module(test).
-export([list_range/4, split_range/1]).
split_range(Range) ->
Each = round(Range / 8),
list_range([], 0, Each, Range).
list_range(Range, Start, Each, Max) ->
End = Start + Each,
case End > Max of
true -> [{Start, Max}];
false -> [{Start, End} | list_range(Range, End + 1, Each, Max)]
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment