Skip to content

A collection of information and coding practice solutions I have done from various sites.

Notifications You must be signed in to change notification settings

pdot86/computer-science-practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

computer-science-practice

This is a repo that conatains information, common data structures, algorithms, and interview style problems. I put this repo together to help refresh, learn, and study for interviews. Included is answers to specific questions from common Data Structures and Algorithms practice sites like LeetCode, HackerRank, and Codility.

Repo Contents

TO DO

  • Classic vs. Prototypical Inheritance
  • Object Oriented Design Patterns
  • JavaScript In-Depth
  • Event Loop

Setup

This project uses the Bun runtime to execute the TypeScript files directly.

To install dependencies:

bun install

To install dependencies + generate an npm package-lock.json:

bun install && npm i --package-lock-only

To install dependencies + generate a yarn yarn.lock:

bun install --yarn

To install dependencies + generate both npm and yarn lockfiles:

bun install && bun run lockfiles

To run a dependency scan:

bun run depscan

To update packages:

bun run update

To run:

bun run index.ts

About

A collection of information and coding practice solutions I have done from various sites.

Resources

Stars

Watchers

Forks