Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/concept/train-driver/train-driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function getListOfWagons(a, b, c, d, e, f, g, h, i, j, k, l, m, n) {
* Reorder the array of wagons by moving the first 2 wagons to the end of the array.
*
* @param {Iterable<number>} ids
* @returns {number[]} reorderd list of wagons
* @returns {number[]} reordered list of wagons
*/
export function fixListOfWagons(ids) {
throw new Error('Please implement the fixListOfWagons function');
Expand Down