Skip to content

Matrixread Archives

Summary

2025

  1. Contains Duplicate LeetCode – JS Solution
  2. Implementing Stack in JavaScript
  3. Implementing Queue in JavaScript
  4. Singly Linked List in JavaScript
  5. Doubly Linked List in JavaScript
  6. Create Hello World Function – 2667
  7. Counter – 2620
  8. To Be Or Not To Be – 2704
  9. Counter II – 2665
  10. Apply Transform Over Each Element in Array – 2635
  11. Filter Elements from Array – 2634
  12. Array Reduce Transformation – 2626
  13. Function Composition – 2629
  14. Return Length of Arguments Passed – 2703
  15. Allow One Function Call – 2666
  16. Memoize – 2623
  17. Add Two Promises – 2723
  18. Sleep – 2621
  19. Timeout Cancellation – 2715
  20. Interval Cancellation – 2725
  21. Promise Time Limit – 2637
  22. Cache With Time Limit – 2622
  23. Debounce – 2627
  24. Execute Asynchronous Functions in Parallel – 2721
  25. Is Object Empty – 2727
  26. Chunk Array – 2677
  27. Array Prototype Last – 2619
  28. Group By – 2631
  29. Sort By – 2724
  30. Join Two Arrays by ID – 2722
  31. Flatten Deeply Nested Array – 2625
  32. Compact Object – 2705
  33. Event Emitter – 2694
  34. Array Wrapper – 2695
  35. Calculator with Method Chaining – 2726
  36. 30 Days of JavaScript Challenge
  37. Squares of a Sorted Array – 977
  38. Maximum Occurring Character in a String – JS
  39. Sum of Numbers in a String – JS
  40. Fibonacci – Iterative vs Recursive JS
  41. Single Number – 136
  42. Missing Number – 268
  43. Valid Anagram – 242
  44. Separate 0s and 1s in an array – Single Iteration
  45. Separate Even and Odd numbers in an array
  46. Majority Element – 169
  47. Unique Pairs with Target Sum
  48. Linear Search in JavaScript
  49. Binary Search in JavaScript
  50. Check if parentheses are balanced – JS
  51. Transpose a Matrix – JavaScript
  52. Evaluate Reverse Polish Notation – 150
  53. Two Sum – LC1 JS Solution
  54. Deep Clone an Object in JavaScript
  55. Generate Fibonacci Sequence – 2648
  56. Type of Triangle – 3024
  57. Palindrome Number – 9
  58. Debounce with flush and cancel
  59. Polyfill for Array.prototype.reduce
  60. Create a function to combine classNames
  61. Flatten a nested array
  62. Throttle in JavaScript
  63. Check types in JavaScript
  64. Write a polyfill for promise.all()
  65. Merge User Data – JavaScript
  66. 10 Ways to iterate through an array in JavaScript
  67. 5 Ways to iterate through an object in JavaScript
  68. 6 Ways to iterate through a string in JavaScript
  69. Remove duplicates from an array in JavaScript
  70. Remove duplicates from a string in JavaScript
  71. 4 Ways to reverse a string in JavaScript
  72. Is a palindrome check in JavaScript
  73. Is a prime number check in JavaScript
  74. Generate prime numbers from 1 to N in JavaScript
  75. Generate N prime numbers in JavaScript
  76. Prime number generator function in JavaScript
  77. Check if the given number is a Fibonacci in JavaScript
  78. Generate Fibonacci numbers from 1 to N with JavaScript
  79. Generate N Fibonacci numbers with JavaScript
  80. Return the largest number in a nested array
  81. Return the Factorial of a number

2024

  • No Posts were published during this year.

2023

  1. Convert SASS and Minify CSS
  2. Learning to write Unit Tests
  3. Cannot find module β€˜agentkeepalive’ npm update
  4. Count Vowels in a String with JavaScript
  5. Consecutive characters count in String with JavaScript
  6. Simple and Pure CSS Spinner

2022

  • No Posts were published during this year.

2021

  1. Firebase Security – 101
  2. Matrixread V3 – Minimalist Design
  3. #4: Developer Changelog 2021
  4. SEO 101 for developers
  5. Did you know Object.seal() in JavaScript
  6. Meta Tags for Twitter SEO
  7. How to submit a Sitemap to Google
  8. #5: I made some Minimal pages
  9. How WordPress helps me blog
  10. Accessibility with Chrome color picker
  11. VS Code extensions for WEB developers
  12. var, let, always use const?
  13. Hoisting in JavaScript
  14. JavaScript Data Types 101
  15. JSON and JavaScript 101
  16. Nullish Coalescing Operator ??
  17. Optional Chaining (?.) – Question mark and Dot in JavaScript
  18. Promise in JavaScript
  19. Iterating arrays with array.some() in JavaScript
  20. 3 years of Blogging, what Next?
  21. Dynamic imports in JavaScript
  22. Promise.all() vs Promise.allSettled() in JavaScript
  23. ES2020 JavaScript features
  24. JavaScript dates simplified
  25. Promise in JavaScript : 101
  26. Handling Fetch errors, Fetch never fails
  27. Assign with Destructuring

2020

  1. How to add Automatic Dark Mode to any Website / WordPress with 1 line of code
  2. Learn Android App Development with Kotlin for free with Google Codelabs
  3. The Art of Automation – Billion Dollar ideas
  4. Is your website mobile friendly, 3 ways to test, and its effect on Google Ranking
  5. Why every Business must have a Blog – Billion Dollar idea
  6. Before you hype to learn Full Stack Development
  7. 8 Best VS Code Extensions to Improve your Productivity
  8. Learn Machine Learning from Google
  9. 4 sites to learn Python for free
  10. Freemium is the new Premium a Billion Dollar idea
  11. 10 Benefits of Facebook Group for Businesses
  12. How to change the Address Bar Color
  13. Change Text Selection Color
  14. SSL – Adding a layer of security to your website
  15. How to view GitHub Commits in 3D
  16. Why I prefer to use 10 or fewer WordPress Plugins
  17. Program to Click a Button N times
  18. How I made 5 Selenium Bots
  19. Collecting Fake Profiles on LinkedIn
  20. 4 Best and Free Screen Recorder for PC
  21. I made a 5KB Flutter App
  22. 5 Android App Projects for Beginners
  23. #1: Matrixread hit 10000
  24. Stack Program in C++ using Array and STL
  25. Contains Duplicate LeetCode C++
  26. Queue program in C++ using Array and STL
  27. Linked List Code in C++
  28. Remove Duplicates from an Unsorted Array
  29. Find Missing Number in Array LeetCode
  30. Program to Validate Username
  31. Single Number in Array LeetCode C++
  32. Squares of a Sorted Array LeetCode O(N)
  33. Two Sum LeetCode Optimized
  34. Template Functions in C++
  35. Bubble Sort Algorithm
  36. Linear Search Algorithm
  37. Sum of Numbers in a String
  38. Maximum Occurring Character in a String
  39. Fibonacci Series – Iterative vs Recursive
  40. Reverse a Linked List
  41. Binary Search Algorithm
  42. Target Sum – Single Iteration O(N)
  43. Anagram in Strings
  44. Count the Duplicates of Array O(N)
  45. Remove Duplicates from a Sorted Linked List
  46. Perform Set Operations on Arrays
  47. Separate 0s and 1s – O(N) Single Iteration
  48. How the bits/stdc++ .h works in C++
  49. Balanced Parenthesis Program
  50. Program to Evaluate Postfix Expression – LeetCode
  51. Tree Traversals – Preorder, Inorder, Postorder
  52. Even Odd Separation O(N) Single Iteration
  53. Direct & Indirect Recursion
  54. #30DaysofCode
  55. LQIP in the WEB
  56. Create a Beautiful Table of Contents
  57. Create Beautiful Buttons
  58. How to Style Images with CSS
  59. FRONT-END WEB DEV 101
  60. #2: Free Frontend Cheat-Sheets
  61. Array of Structures – API Problem
  62. Transpose a Matrix
  63. Sorting Algorithms in C++
  64. Majority Element in an Array – LeetCode
  65. #3: Interview Resources
  66. Styling Code Blocks in WordPress
  67. Best of Web – 2020
  68. Adding a Simple Cookie Consent
  69. BACKEND 101
  70. Matrixread Archives
Back to Top