Implement basic list operations.
In functional languages list operations like length
, map
, and
reduce
are very common. Implement a series of basic list operations,
without using existing functions.
The precise number and names of the operations to be implemented will be track dependent to avoid conflicts with existing names, but the general operations you will implement include:
append
(given two lists, add all items in the second list to the end of the first list);concatenate
(given a series of lists, combine all items in all lists into one flattened list);filter
(given a predicate and a list, return the list of all items for which predicate(item)
is True);length
(given a list, return the total number of items within it);map
(given a function and a list, return the list of the results of applying function(item)
on all items);foldl
(given a function, a list, and initial accumulator, fold (reduce) each item into the accumulator from the left using function(accumulator, item)
);foldr
(given a function, a list, and an initial accumulator, fold (reduce) each item into the accumulator from the right using function(item, accumulator)
);reverse
(given a list, return a list with all the original items, but in reversed order);Go through the setup instructions for TypeScript to install the necessary dependencies:
https://exercism.io/tracks/typescript/installation
Install assignment dependencies:
$ yarn install
Execute the tests with:
$ yarn test
In the test suites all tests but the first have been skipped.
Once you get a test passing, you can enable the next one by changing xit
to
it
.
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
import List from './list-ops'
describe('append entries to a list and return the new list', () => {
it('empty lists', () => {
const list1 = new List()
const list2 = new List()
expect(list1.append(list2)).toEqual(new List())
})
xit('empty list to list', () => {
const list1 = new List([1, 2, 3, 4])
const list2 = new List<number>()
expect(list1.append(list2)).toEqual(list1)
})
xit('non-empty lists', () => {
const list1 = new List([1, 2])
const list2 = new List([2, 3, 4, 5])
expect(list1.append(list2).values).toEqual([1, 2, 2, 3, 4, 5])
})
})
describe('concat lists and lists of lists into new list', () => {
xit('empty list', () => {
const list1 = new List()
const list2 = new List([])
expect(list1.concat(list2).values).toEqual([])
})
xit('list of lists', () => {
const list1 = new List([1, 2])
const list2 = new List([3])
const list3 = new List([])
const list4 = new List([4, 5, 6])
const listOfLists = new List([list2, list3, list4])
expect(list1.concat(listOfLists).values).toEqual([1, 2, 3, 4, 5, 6])
})
})
describe('filter list returning only values that satisfy the filter function', () => {
xit('empty list', () => {
const list1 = new List([])
expect(list1.filter((el: number) => el % 2 === 1).values).toEqual([])
})
xit('non empty list', () => {
const list1 = new List([1, 2, 3, 5])
expect(list1.filter((el: number) => el % 2 === 1).values).toEqual([1, 3, 5])
})
})
describe('returns the length of a list', () => {
xit('empty list', () => {
const list1 = new List()
expect(list1.length()).toEqual(0)
})
xit('non-empty list', () => {
const list1 = new List([1, 2, 3, 4])
expect(list1.length()).toEqual(4)
})
})
describe('returns a list of elements whose values equal the list value transformed by the mapping function', () => {
xit('empty list', () => {
const list1 = new List()
expect(list1.map((el: number) => ++el).values).toEqual([])
})
xit('non-empty list', () => {
const list1 = new List([1, 3, 5, 7])
expect(list1.map((el: number) => ++el).values).toEqual([2, 4, 6, 8])
})
})
describe('folds (reduces) the given list from the left with a function', () => {
xit('empty list', () => {
const list1 = new List()
expect(list1.foldl((acc: number, el: number) => el / acc, 2)).toEqual(2)
})
xit('division of integers', () => {
const list1 = new List([1, 2, 3, 4])
expect(list1.foldl((acc: number, el: number) => el / acc, 24)).toEqual(64)
})
})
describe('folds (reduces) the given list from the right with a function', () => {
xit('empty list', () => {
const list1 = new List()
expect(list1.foldr((acc: number, el: number) => el / acc, 2)).toEqual(2)
})
xit('division of integers', () => {
const list1 = new List([1, 2, 3, 4])
expect(list1.foldr((acc: number, el: number) => el / acc, 24)).toEqual(9)
})
})
describe('reverse the elements of a list', () => {
xit('empty list', () => {
const list1 = new List()
expect(list1.reverse().values).toEqual([])
})
xit('non-empty list', () => {
const list1 = new List([1, 3, 5, 7])
expect(list1.reverse().values).toEqual([7, 5, 3, 1])
})
})
export default class List<T> {
values: T[];
constructor(arr: T[] = []) {
this.values = arr;
}
append(lst: List<T>) {
let ret = this.values;
lst.values.forEach((a: T) => {
ret.push(a)
});
return new List(ret);
}
concat(listOfLists: List<List<T>>) {
let ret: List<T> = this;
listOfLists.values.forEach((a: List<T>) => {
ret = ret.append(a);
})
return ret;
}
filter(fn: (a: any) => boolean) {
let ret: T[] = [];
this.values.forEach(a => {
if (fn(a)) {
ret.push(a);
}
})
return new List(ret);
}
length() {
let count = 0;
this.values.forEach(() => count += 1);
return count;
}
map(fn: (a: any) => T): List<T> {
let ret: T[] = [];
this.values.forEach(a => {
ret.push(fn(a))
})
return new List(ret);
}
foldl(fn: (acc: T, el: T) => T, acc: T): T {
let acc_ = acc;
this.values.forEach((a: T) => {
acc_ = fn(acc_, a)
});
return acc_;
}
foldr(fn: (acc: T, el: T) => T, acc: T): T {
let acc_ = acc;
this.values.reverse().forEach((a: T) => {
acc_ = fn(acc_, a)
});
return acc_;
}
reverse() {
let ret = [];
for (let i = this.values.length - 1; i >= 0; --i) {
ret.push(this.values[i]);
}
return new List(ret);
}
}
A huge amount can be learned from reading other people’s code. This is why we wanted to give exercism users the option of making their solutions public.
Here are some questions to help you reflect on this solution and learn the most from it.
Level up your programming skills with 3,103 exercises across 52 languages, and insightful discussion with our volunteer team of welcoming mentors. Exercism is 100% free forever.
Sign up Learn More
Community comments