Skip to content

Instantly share code, notes, and snippets.

@begriffs
Last active December 16, 2015 19:39
Show Gist options
  • Select an option

  • Save begriffs/5486545 to your computer and use it in GitHub Desktop.

Select an option

Save begriffs/5486545 to your computer and use it in GitHub Desktop.
Example using eq_classes on the relation "differs by three"
eq_classes(
[0,1,2,3,4,5,6,7,8],
function(a,b) { return Math.abs(a-b) === 3; }
);
// returns {0: [0,3,6], 1: [1,4,7], 2: [2,5,8]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment