import java.util.List; class VariableLengthQuantity { List encode(List numbers) { throw new UnsupportedOperationException("Delete this statement and write your own implementation."); } List decode(List bytes) { throw new UnsupportedOperationException("Delete this statement and write your own implementation."); } }