Skip to content
View LenonLopez's full-sized avatar
🪄
Focusing
🪄
Focusing

Block or report LenonLopez

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. angular-notice angular-notice Public

    Native notifications for your Angular application using the Web Notification API. Works on chrome, firefox, edge, and safari.

    TypeScript 12 4

  2. insertionSort.go insertionSort.go
    1
    func insertionSort(numbers []int) {
    2
      // start i at the second index (1) because the first item in the slice is considered sorted.
    3
      for i := 1; i < len(numbers); i++ {
    4
      numToSort := numbers[i]
    5
    	prevNumIndex := i - 1
  3. simple recursive binary search simple recursive binary search
    1
    using System;
    2
    using System.Linq;
    3
    
                  
    4
    class MainClass {
    5
      public static void Main (string[] args) {
  4. graph with breadth first search graph with breadth first search
    1
    // Graph - BFS
    2
    class Graph {
    3
    // assumes undirected acyclic graph is represented as an adjacency list
    4
    
                  
    5
    // graph
  5. classic insertion sort algorithm sor... classic insertion sort algorithm sorting numbers in non increasing order
    1
    const arrayToSort = [5,2,4,6,1,3];
    2
    
                  
    3
    // array is sorted in place in O(n^2)
    4
    // return value based on example input: [6,5,4,3,2,1]
    5
    const insertionSort = (arrayToSort) => {
  6. Min Heap implementation in Javascript Min Heap implementation in Javascript
    1
    class MinHeap {
    2
    
                  
    3
      constructor(array) {
    4
        this.heapSize = array.length;
    5
        this.heap = array;