Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View coderfiregun's full-sized avatar
πŸ’­
Full Throttle
πŸ’­
Full Throttle

Block or report coderfiregun

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
coderfiregun/README.md
  • πŸ‘‹ Hi, I’m @coderfiregun
  • πŸ‘€ I’m interested in competetive programming
  • 🌱 I’m currently learning devlopment
  • πŸ’žοΈ I’m looking to collaborate on problem solving

Pinned Loading

  1. Java Collections Java Collections
    1
    # 🎯 Java Collections β€” LLD Interview Cheatsheet
    2
    
                  
    3
    > **Organized by Collection Hierarchy** for easy memorization  
    4
    > Interface methods β†’ Implementations β†’ Complexities
    5
  2. Problem Solving Problem Solving
    1
    [constructive algorithms](https://codeforces.com/problemset/page/18?tags=constructive+algorithms)<br>
    2
    [leetcode premium](https://leetcode.com/problemset/?premium=true&page=1)<br>
  3. Mac ( Sublime Text, C++ ) Setup.Md Mac ( Sublime Text, C++ ) Setup.Md
    1
    install [homebrew](https://brew.sh/)
    2
    - brew install gcc
    3
    
                  
    4
    link homebrew installed gcc (g++-13) with mac gcc (By default mac gcc is clang)
    5
    - cd /opt/homebrew/bin
  4. Install NVM in Mac for Node versions Install NVM in Mac for Node versions
    1
    - brew install nvm
    2
    - nano ~/.zshrc
    3
    - add 
    4
      source $(brew --prefix nvm)/nvm.sh
  5. Installing GVM in Mac for managing G... Installing GVM in Mac for managing Go version
    1
    - brew update
    2
    - brew install mercurial
    3
    - bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)
    4
    - source ~/.gvm/scripts/gvm
  6. Install Rust in Mac Install Rust in Mac
    1
    - sudo curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
    2
    bash -s -- -y --no-modify-path