Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 2.19 KB

File metadata and controls

41 lines (26 loc) · 2.19 KB

JavaScript Algorithms and Data Structures

logo

(The image is generated by a neural network Kandinsky 3.1 with a prompt: "javascript typescript algorithms and data structures")

To run any arbitrary js- or ts- script, type in the console

npm start filename.[ts|js]

VS Code debugging for ts-files

If "imports" will not work in the compiled js-files, do the following:

  1. package.json : change value of "type"-prop to "commonjs"
  2. tsconfig.json : change value of "module"-prop to "CommonJS"

Useful links for the preparation to the interviews

  1. Sorting Algorithms Animations
  2. Glassdoor microsoft questions
  3. React Interview Questions & Answers
  4. JavaScript algorithms
  5. Geeks for Geeks. sSDE SHEET – A Complete Guide for SDE Preparation
  6. datastructures-js - the javascript data structures project

Algorithm Visualizer, an interactive online platform designed to bring algorithms to life through visualization

Visualization of the binary trees, presented in array-form

Visualization of Graph Algorithms

Complexity of sorting

Complexity of sorting

Test myself again on: lc-0330, lc-0658, lc-1508