Code Monkey home page Code Monkey logo

playground's Introduction

Playground

tests

A playground for things I'm learning/practicing.

Code is done in TypeScript. Includes tests.

Screenshot

Table of contents

  • Algorithms
    • Useful concepts for solving problems
      • Pointers to go through an array/data structure
      • Sorting before we start
      • Hash maps to store partial results
      • Insert in reverse order on a new array size n, when creating a sorted array
  • Data Structures
    • JS Array (big-o)
      • Sort
        • Without a sort function it will convert elements into strings, 80 comes before 9
        • The sorting algorithm is stable
          • Elements that are already sorted, will remain in the same position
        • Behaviour might not be well-defined unless
          • purity, stability, reflexivity, symmetry, and transitivity rules are respected
            • > 0 sort a after b
            • < 0 sort a before b
            • === 0 keep original order of a and b
          • const compare = (a, b) => a > b ? -1 : 0;
            • Will have different results in V8 and SpiderMonkey
    • JS Map
    • JS Set
    • Stack using Array
    • Singly Linked List
      • Benefits of a sorted list are lost on a sorted SLL
    • Double Linked List
      • Each node can be anywhere in memory, no need to resize an array
      • We don't need to shift position of elements when inserting or deleting like in an array
    • Queue using Double Linked List
      • Using a DLL allows us to do operations O(1) for enqueue and dequeue
        • Faster than using a JS Array or an SLL
    • Tree
      • root node, first unique node where all node descend from
        • the root node is at level 0
        • the children of that node are at level 1, etc
      • a subtree is a tree whose nodes descend from some other tree
      • degree is the total number of children of a given node (degree of that node)
        • a tree with only one node has degree of 0
      • leaf node is one that does not have any children and is the terminal node of a given tree
        • the degree of a leaf node is always 0
      • edge is the connection between any given two nodes in a tree
        • the total number of edges on a given tree will always be a maximum of one less than the total nodes in the tree
      • a node with a subtree is the parent of that subtree
      • child is a descendant from a parent node
      • sibling is one of the nodes with the same parent
      • the height of a tree is the total number of nodes in the longest path of the tree
      • the depth of a node is the number of edges from the root to the node
    • Graph
      • non-linear data structure
      • abstract model of a network
      • nodes (vertices) connected by edges (can be directed or undirected)
      • vertices connected by an edge are called adjacent vertices
      • a degree of a vertex consists of the number of adjacent vertices
      • a path is a sequence of consecutive adjacent vertices
        • a simple path does not contain repeated vertices
        • a cycle is a simple path, except for the last vertex
      • a graph is acyclic if it does not have cycles
      • a graph is connected if there is a path between every pair of vertices
      • can be undirected, where edges do not have a direction
      • can be directed (digraph), where edges have a direction
      • is strongly connected if there is a path in both directions between every pair of vertices
      • can be weighted, where edges have a value or unweighted, where edges have no value
      • can be represented as adjacency matrix
        • when not strongly connected, the matrix is sparse (sparse graph) with many 0s
        • not flexible (number of vertices is fixed)
        • wastes space (O(n^2))
      • can be represented as an adjacency list (we are using this one)
        • flexible (number of vertices is not fixed)
        • uses less space (O(n + m))
        • can be implemented as an array of linked lists
        • can be implemented as a hash table of linked lists
      • can be represented with an incidence matrix
        • usually to save space and memory when there are more edges than vertices
  • Interview Questions
    • See the history of the file to see the different solutions (or partial solutions) I've tried
  • Design Patterns
  • Math
  • TypeScript
  • Archive
    • Includes old code for some AI/ML, JS, data structures, math, and SEO python notebooks

playground's People

Contributors

neuralch avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

admariner

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.