I am applying for a job and the application requires basic programming knowledge and gives you a question. I have to use this CSV file (Google doc) and find the rows where the user was created between June 22nd, 2014 and July 22nd, 2014 then make them ascending order.
Here's a small extract from the data:
id created_at first_name last_name …
1 1309380645 Stephanie Franklin …
2 1237178109 Michelle Fowler …
3 1303585711 Betty Barnes …
I could easily write the program in Ruby or Python, but my only issue is I can't understand the created_at
date. I'm pretty sure the first two numbers are the year but I've never seen a date formatted this way. How should I interpret that created_at
column?