Skip to content
View drew138's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro
Block or Report

Block or report drew138

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
drew138/README.md

Hi there!, I'm Andres 👋 💻 ☕

My Interests

  • Backend Development
  • Noevim
  • Go
  • Linux
  • Data Structures & Algorithms

Connect with me 📫

Andres | LinkedIn Andres | Instagram

My Stats

Top Langs

Drew138 GitHub Stats

Pinned

  1. .dotfiles .dotfiles Public

    A repository to automatically set up my workstation

    Lua 1

  2. go-graphics go-graphics Public

    go package with various utilities for image processing and generation

    Go 2

  3. algorithms algorithms Public

    Solutions for data structures and algorithms problems encountered over time in Python, Go and C++.

    Python 2

  4. competitive-programming competitive-programming Public

    Solutions to competitive programming problems

    C++ 2

  5. Kosaraju's Algorithm - Strongly Conn... Kosaraju's Algorithm - Strongly Connected Components
    1
    #include <bits/stdc++.h>
    2
    #include <iostream>
    3
    typedef std::unordered_map<int, std::vector<int>> mapiv;
    4
    typedef std::vector<std::vector<int>> vvi;
    5
    typedef std::vector<int> vi;
  6. Heap Implementation Heap Implementation
    1
    class Heap:
    2
        def __init__(self, key, arr=[]) -> None:
    3
            self.arr = arr
    4
            self.key = key
    5