Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bekahhw/coding-sample


https://github.com/bekahhw/coding-sample

Last synced: 8 days ago
JSON representation

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.me​api, build a summary service that uses the picture, name, location, email, and age.
● Deploy to your own infrastructure.