code kata: recent song playlist

Solve this challenge using a project in your editor


Create a recent song list to hold a unique set of songs that have been played.

The most recently played song is at the start of the list, the least recently played song is the last in the list.

  • A recently-used-list is initially empty.
  • Songs in the list are unique, so repeatedly played songs should only appear once in the list
  • Songs can be looked up by index, which counts from zero.

Optional extras:

  • Empty song names are not allowed.
  • Add a limit to the number of songs the list contains, with the least recently added items dropped when that limit is reached.

Add two files to the playground project

Open the playground project you created at the start of the workshop. Or create it now with the command line lein new playground.

Add the following two files to the project

  • src/playground/recent-song-list.clj
  • test/playground/recent-song-list-test.clj

Include clojure.test

We are writing our tests with the clojure.test library so we need to include that first

Open test/playground/recent-song-list-test.clj file in your editor and update the namespace definition to include clojure.test

(ns playground.recent-song-list-test
  (:require [clojure.test :refer :all]
            [playground.recent-song-list :refer :all]))

Run Tests

At any time we can use the run-tests function to get a report back on all of the tests in our current namespace (recent-song-list)

(run-tests)

Define a recent song list

In the source file, src/playground/recent-song-list.clj, define a name for your collection of recent songs

You can use an empty collection to start with. Which collection type will you use though?

Reveal answer...

Write a test to check a song-list exists

Write a test to see if a recent song list exists.

This is an opportunity to think about what kind of data structure you want to use to hold your recent song list.

Suggested test...

Write a test to check the song-list is empty

The recent song list should be empty to start with.

Suggested test...

Write a test to add a song to the list

Add a song to the collection, for example Tubular Bells - Mike Oldfield

Suggested test...
Suggested Code Solution...

results matching ""

    No results matching ""