Git Product home page Git Product logo

cyrus-ruby's Introduction

Cyrus Innovation

#Code Test Ruby

Write a Ruby program to first assemble a single set of records by parsing data from 3 different file formats and then display these records sorted in 3 different ways.

##Guidelines

  • We hope that this exercise will allow us to evaluate your skills as a developer. The qualities that we pay special attention to are:
    • Simplicity/elegance of design
    • Adherence to good software engineering principles
    • Maintainability (clean, easy to understand code)
    • Effective use of the standard library
    • Use of unit tests

##Input Data A record consists of the following 5 fields:

  • last name, first name, gender, date of birth and favorite color.

You will be given 3 files, each containing records stored in a different format.

  • The pipe-delimited file lists each record as follows:
    • LastName | FirstName | MiddleInitial | Gender | FavoriteColor | DateOfBirth
  • The comma-delimited file looks like this:
    • LastName, FirstName, Gender, FavoriteColor, DateOfBirth
  • The space-delimited file looks like this:
    • LastName FirstName MiddleInitial Gender DateOfBirth FavoriteColor

You may assume that the delimiters (commas, pipes and spaces) do not appear anywhere in the data values themselves. Write a Ruby program to read in records from these files and combine them into a single set of records.

##Display Requirements

Create and display 3 different views of the recordset (see sample here):

  • Output 1 – sorted by gender (females before males) then by last name ascending.
  • Output 2 – sorted by birth date, ascending.
  • Output 3 – sorted by last name, descending.

Ensure that fields are displayed in the following order:

  • last name, first name, gender, date of birth, favorite color.

Display dates in the format M/D/YYYY.

##Packaging Requirements

  • Please package the code in a zip or tar archive when you send it to us.
  • Tell us which script or rake task to run in order to produce the desired output from your program.
  • Specify what version of Ruby you’re using. You may use any official release of the CRuby interpreter.
  • You may use the core and the standard library, but no gems, except Rake. If you do use Rake, specify the version.

Solutions as well as questions and comments should be sent to us at [email protected].

cyrus-ruby's People

Contributors

brittlewis12 avatar

Watchers

 avatar  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.