Giter Club home page Giter Club logo

amusement-parks-ruby's Introduction

Indexing

You work for a tourism agency, and your job is to promote amusement parks. You have been given a list of amusement parks and you need to write code to help organize the data.

Your mission, should you choose to accept it, is to group amusement parks by

  • ID
  • Country
  • Country / State

Challenge 1 - Indexing by ID

You need to provide a way to get extremely fast access to amusement parks by their ID.

So given the following array:

[
  {
    :id=>546,
    :name=>"Kalahari Resorts",
    :city=>"Wisconsin Dells",
    :state=>"Wisconsin",
    :country=>"United States"
  },
  {
    :id=>547,
    :name=>"Little Amerricka",
    :city=>"Marshall",
    :state=>"Wisconsin",
    :country=>"United States"
   }
 ]

Your code should produce the following hash:

{
  546 => {
    :id=>546,
    :name=>"Kalahari Resorts",
    :city=>"Wisconsin Dells",
    :state=>"Wisconsin",
    :country=>"United States"
  },
  547 => {
    :id=>547,
    :name=>"Little Amerricka",
    :city=>"Marshall",
    :state=>"Wisconsin",
    :country=>"United States"
   }
}

Challenge 2 - Indexing by Country

So given the following array:

[
  {
    :id=>546,
    :name=>"Kalahari Resorts",
    :city=>"Wisconsin Dells",
    :state=>"Wisconsin",
    :country=>"United States"
  },
  {
    :id=>547,
    :name=>"Little Amerricka",
    :city=>"Marshall",
    :state=>"Wisconsin",
    :country=>"United States"
   },
  {
    :id=>2,
    :name=>"Calaway Park",
    :city=>"Calgary",
    :state=>"Alberta",
    :country=>"Canada"
  }
]

Your code should produce the following hash:

{
  "Canada" => [
    {
      :id=>2,
      :name=>"Calaway Park",
      :city=>"Calgary",
      :state=>"Alberta",
      :country=>"Canada"
    }
  ],
  "United States" => [
    {
      :id=>546,
      :name=>"Kalahari Resorts",
      :city=>"Wisconsin Dells",
      :state=>"Wisconsin",
      :country=>"United States"
    },
    {
      :id=>547,
      :name=>"Little Amerricka",
      :city=>"Marshall",
      :state=>"Wisconsin",
      :country=>"United States"
     }
  ]
}

Challenge 3 - Indexing by Country and State

Given the following array:

[
  {
    :id=>3,
    :name=>"Galaxyland",
    :city=>"Edmonton",
    :state=>"Alberta",
    :country=>"Canada"
  },
  {
    :id=>4,
    :name=>"Heratage Park",
    :city=>"Calgary",
    :state=>"Alberta",
    :country=>"Canada"
  },
  {
    :id=>6,
    :name=>"Playland (Vancouver)",
    :city=>"Vancouver",
    :state=>"British Columbia",
    :country=>"Canada"
  },
  {
    :id=>8,
    :name=>"Crystal Palace Amusement Park",
    :city=>"Dieppe",
    :state=>"New Brunswick",
    :country=>"Canada"
  }
]

Your code should return the following hash:

{
  "Alberta, Canada" => [
    {
      :id => 3,
      :name => "Galaxyland",
      :city => "Edmonton",
      :state => "Alberta",
      :country => "Canada"
    },
    {
      :id => 4,
      :name => "Heratage Park",
      :city => "Calgary",
      :state => "Alberta",
      :country => "Canada"
    },
  ],
  "British Columbia, Canada" => [
    {
      :id => 6,
      :name => "Playland (Vancouver)",
      :city => "Vancouver",
      :state => "British Columbia",
      :country => "Canada"
    },
  ],
  "New Brunswick, Canada" => [
    {
      :id => 8,
      :name => "Crystal Palace Amusement Park",
      :city => "Dieppe",
      :state => "New Brunswick",
      :country => "Canada"
    }
  ]
}

Challenge #4 - Run your code against the YML file

Run your code against the data in data/amusement_parks.yml.

amusement-parks-ruby's People

Contributors

mikegehard avatar

Watchers

James Cloos avatar Steve Witman avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.