forked from JClutch/Test-Bank
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jason McCutchan
authored and
Jason McCutchan
committed
Mar 14, 2018
1 parent
f2e0248
commit 09b2b37
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Coding Challenges | ||
|
||
|
||
These are examples coding challenges one could potentially recieve during the interview process.The prompt for each Coding Challenge will be in the README.md file of each folder. | ||
|
||
Notes and general soltuion outline will be listed in the SOLUTION.md file and an example code solution will be available in the SOLUTION.js file or SOLUTION Folder. Some of these prompts may not have actual solution code as the challenge will be general enough where there are multiple correct solutions. | ||
|
||
## Contributing | ||
Please follow the example format located in the [Format_Example](https://github.com/JClutch/Test-Bank/tree/master/Coding_Challenges/Format_Example) folder. | ||
|
||
Also please read and follow [CONTRIBUTING.md](https://github.com/JClutch/Test-Bank/blob/master/CONTRIBUTING.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Restaurant E.T.L | ||
|
||
##Prompt | ||
|
||
Using your choice of language and data store, create and E.T.L(Extract, Transform, Load) service to ingest from DOHMH New York City Restaurant Inspection Result Data set from NYC Open Data. | ||
|
||
(Download Link: https://nycopendata.socrata.com/api/views/xx67-kt59/rows.csv?accessType=DOWNLOAD) | ||
|
||
Generate a list of the top 10 Thai restraunts that have atleast a B health grade rating or better and enter these in your data store. This could be handled using a SQL query but this challenge is focused around building a front end to solve this problem. Also add visualizations of the selected data. | ||
|
||
**NOTES** | ||
|
||
When choosing your data store, consider how to best setup your schema and why that type would be most optimal for this task. | ||
|