Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bekahhw/coding-sample
https://github.com/bekahhw/coding-sample
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bekahhw/coding-sample
- Owner: BekahHW
- Created: 2020-03-30T17:05:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T17:57:47.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T13:40:20.411Z (7 months ago)
- Language: JavaScript
- Size: 3.94 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Getting started
-Fork and clone the repo
-Run:
cd coding-sample && yarn### `yarn start`
Runs the app in the development mode.
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.## Content for the coding sample:
### Part 1: Logic/Data Problems
● Write a function that returns true or false based on if the passed value is an even number.
● Write a function that takes in two parameters; a string of length n, and a single character. Find and count all instances of the single character and return the number found.
● Take the two arrays below, find matching values, and return an array containing them.
○ [4, 3, 4, 29, 99, 13, 19, 23, 34]
○ [3, 45, 57, 0, 94, 23, 24, 34]### Part 2: Front End Development
● Using the framework/library of your choice (React, Vue, Angular) and the randomuser.meapi, build a summary service that uses the picture, name, location, email, and age.
● Deploy to your own infrastructure.