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

https://github.com/david-lapadula/interview-prep-fcc

JavaScript interview practice
https://github.com/david-lapadula/interview-prep-fcc

algorithms css data-structures html javascript

Last synced: about 1 year ago
JSON representation

JavaScript interview practice

Awesome Lists containing this project

README

          

# Free Code Camp Interview Prep

## Table of contents
1. [Description](#description)
2. [Technology](#technology)
3. [Usage](#usage)

## Description

A comprehensive collection of resources provided by Free Code Camp to help you prepare for technical interviews. This includes a variety of tasks and challenges focused on Data Structures, Algorithms, and practical Projects.
A comprehensive collection of resources provided by Free Code Camp to help you prepare for technical interviews. This includes a variety of tasks and challenges focused on Data Structures, Algorithms, and practical Projects.

## Technology

* HTML
* CSS
* JavaScript
* [Node.js](https://nodejs.org/en/)
* [React.js](https://reactjs.org/)

## Usage

Clone the repository.

```bash
git clone https://github.com/DavidLapadula/interview-prep-fcc.git
cd interview-prep-fcc
```

### Data Structures / Algorithms

To execute one of these files, open the terminal and navigate to either the DataStructures or Algorithms folder. Once there, use a JavaScript runtime such as Node.js to run the desired file. For example:

```bash
node binarySearch.js
```

### Projects

Each project is built using React.js. To run a project, navigate to its root directory in the terminal and install the dependencies. Ensure you have NPM installed. For example:

```bash
cd Projects/game-of-life
npm install
```

The run the following command and a browser will open with the project.

```bash
npm start
```