Skip to content

Object Modeling for given problem statement of hackerrank like coding game platform and a music player

Notifications You must be signed in to change notification settings

Pankaj4398/Object-Modeling-CodingGame-Jukebox

Repository files navigation

Object-Modeling-CodingGame-Jukebox

Coding Game Problem Statement

  1. CodinGame is an Online Coding Platform that allows a user to Sign Up, Create Contests and participate in Contests hosted by Others.
  2. Each contest can have a level (LOW, MEDIUM, HIGH) and will contain a set of questions.
  3. Each question will have different levels of difficulty (LOW, MEDIUM, HIGH) and score.
  4. Based on the contest level, the question set is going to be decided. Contest level with LOW difficulty will have questions with LOW difficulty level.
  5. Final score will be decided based on the difficulty LEVEL chosen for a contest and the number of questions.
  6. Users solve problems and get points based on the difficulty of the problems and after the contest, scores of the users are updated. Credits: Flipkart Interview

Jukebox Problem Statement

Functional Requirements

  1. A user can create a playlist from a pool of available songs.
  2. A user can delete a playlist.
  3. A user can add / delete songs from the playlist.
  4. A user can start playing songs by choosing a playlist. On choosing a playlist, the first song in the playlist will start playing.
  5. A user can switch songs by using Next, Back command or by choosing another song from the playlist that has been chosen.
  6. On reaching the end, Next will switch to the first song in the current playlist.
  7. On reaching the start, Back will switch to the last song in the playlist.
  8. Only one song can be played at a time.
  9. A user can choose to play the song from another playlist if and only if that playlist is selected. Basically two operations have to be done to successfully play the song of their choice.
  10. Select the playlist ( which will play the first song when selected )
  11. Choose the song of your choice.
  12. An album is a collection of songs owned by the original artist / artist group . Artist Group Example:- One Direction. One Direction Group is the album owner and is considered as an artist.
  13. Each song can feature multiple artists but it will be owned by the artist whose album this song belongs to.
  14. Each song can only be a part of one album.

About

Object Modeling for given problem statement of hackerrank like coding game platform and a music player

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages