Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Fair Sequence

Problem Description

Given a sequence of integers, determine if the sequence is "fair" - meaning it can be partitioned into two subsequences of equal sum.

Goal

Check if the input sequence can be split into two groups where the sum of elements in each group is equal.

Implementations

  • fairseq.c - C implementation
  • fairseq.py - Python implementation
  • fairseq.sml - SML/NJ implementation