Newer
Older
exercism-cpp / simple-linked-list / .exercism / config.json
{
  "authors": [
    "vaeng"
  ],
  "files": {
    "solution": [
      "simple_linked_list.cpp",
      "simple_linked_list.h"
    ],
    "test": [
      "simple_linked_list_test.cpp"
    ],
    "example": [
      ".meta/example.cpp",
      ".meta/example.h"
    ]
  },
  "blurb": "Write a simple linked list implementation that uses Elements and a List.",
  "source": "Inspired by 'Data Structures and Algorithms with Object-Oriented Design Patterns in Ruby', singly linked-lists.",
  "source_url": "https://web.archive.org/web/20160731005714/http://brpreiss.com/books/opus8/html/page96.html"
}