Giter VIP home page Giter VIP logo

h1b_statistics's Introduction

H1B Statistics

This is a simple and straight forward implementation to the h1b statistics challenge. I implemented the challenge is in native python, without any added modules frameworks or libraries.

Implementation

  1. Read the input file header, and locate all the desired columns.
  2. Read the input file, line by line, counting for the relevant data, using a dictionary as a counter.
  3. Output the needed output, according to the given format.

Notes

  1. I'm using a dictionary to count data. This works well empirically on the given examples. I can easily explain this for the states data, since there are only 50 states. The number of occupations is larger, but not too large (e.g. there are less than 1000 occupations for the largest data set). Some other simple alternative could have been using python collections, in particular counter, but there was no need to. Using python collections might have made the code clearer, but given your instructions (use basic data structures), I decided not to use it.
  2. I read the entire file into memory. Again, I could have used some kind of serialization, going iteratively line by line. Since my approach worked well empirically, even on large input files, I didn't find any need to do something more sophisticated.
  3. I filter for CERTIFIED status. I ignore all other status, including CERTIFIED-WITHDRAWN.

h1b_statistics's People

Contributors

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