Last active
May 12, 2016 22:09
-
-
Save Nolski/56098d6d15206379046991e6246c0a6e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
partition([], H, [], [], []). | |
partition([TailH | TailT], H, [TailH | Less], Same, Greater) :- | |
TailH < H, | |
partition(TailT, H, Less, Same, Greater). | |
partition([TailH | TailT], H, Less, [TailH | Same], Greater) :- | |
TailH = H, | |
partition(TailT, H, Less, Same, Greater). | |
partition([TailH | TailT], H, Less, Same, [TailH | Greater]) :- | |
TailH > H, | |
partition(TailT, H, Less, Same, Greater). | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment