Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 901 Bytes

README.md

File metadata and controls

51 lines (42 loc) · 901 Bytes

JS_Practice

Java Script Practice set as per standard

Design Pattern

  1. Moduler Pattern -- Object Literals
  2. Revealing Pattern
  3. Creational Pattern
  4. Constructor Pattern
  5. Singleton Pattern
  6. Observer Pattern
  7. Mediator Pattern
  8. Prototype Pattern
  9. Command Pattern
  10. Facade Pattern
  11. Factory Pattern
  12. Mixin Pattern
  13. Decorator Pattern
  14. Pub Sub Pattern
  15. MV* Pattern
  1. MVC
  2. MVP
  3. MVVM

Data Structure

  1. Bubble Sort
  2. Insertion Sort
  3. Selection Sort
  4. Merge Sort
  5. Quick Sort

Operations

  1. Comparison
  2. Swap

Measurement Performance

  1. Time Complexity
  2. Space Complexity

Set Algorithms

  1. Union - {1,2,3,4} - { 3,5,6} = {1,2,3,4,5,6}
  2. Intersection - {1,2,3,4} - {3,4,5,6} = {3,4}
  3. Set difference - { 1,2,3,4} - {3,4,5,6} = {1,2}
  4. Symmentic difference - { 1,2,3 } - { 2,3,4 } = {1,4}

Principal

  1. Single Responsibility

Thanks, Manoj