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
- Host: GitHub
- URL: https://github.com/david-lapadula/interview-prep-fcc
- Owner: david-lapadula
- Created: 2024-06-19T02:23:59.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-16T16:07:28.000Z (about 1 year ago)
- Last Synced: 2025-03-16T17:20:56.059Z (about 1 year ago)
- Topics: algorithms, css, data-structures, html, javascript
- Language: JavaScript
- Homepage:
- Size: 388 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```