Given a sequence of integers, determine if the sequence is "fair" - meaning it can be partitioned into two subsequences of equal sum.
Check if the input sequence can be split into two groups where the sum of elements in each group is equal.
fairseq.c- C implementationfairseq.py- Python implementationfairseq.sml- SML/NJ implementation