Skip to content
View navtosh-kumar's full-sized avatar
  • IIT BHU

Block or report navtosh-kumar

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

Hi there, I'm Navtosh - 3rd Year Undergraduate IIT BHU 👋

I am a passionate learner who believes in collaboration to solve problems in Computer Science. I enjoy building user-centric products. I continually aim to hone my expertise in several programming tools and environment, and to push the envelope in Computer Science with new technologies and discipline.

I am highly inclined towards:

  • 🎲 Data Structures and Algorithms
  • 🚀 Backend Development
  • 🎯 Finance and Economics
  • 👨‍💻 System Design

Connect with me:

navtosh-kumar | LinkedIn navtosh-kumar | Medium


Languages and Tools:

JavaScript

Node.js

MySQL

MongoDB

GitHub

React

Gatsby

GraphQL

Terminal



📕 Latest Blog Posts

➡️ more blog posts...


⚡ GitHub Stats Navtosh's GitHub Stats

Visitor Count

Pinned Loading

  1. Rain Water Trapping Stack Rain Water Trapping Stack
    1
    int trap(int height[], int n)
    2
    {
    3
        int water = 0, current = 0;
    4
        stack<int> stk;
    5
        while (current < n) {
  2. rotate_matrix_anticlockwise_in-place... rotate_matrix_anticlockwise_in-place.cpp
    1
    void rotate(vector<vector<int>>& matrix) {
    2
        int n = matrix.size();
    3
        // if the matrix size is 0 or 1
    4
        // the rotated matrix is same as the original
    5
        if(n == 0 || n == 1) return;
  3. Shortest-Path-Finding-Visualizer Shortest-Path-Finding-Visualizer Public

    Shortest Path Finding Visualizer

    JavaScript 1

  4. Implementation-of-a-Simple-Key-Value-Store-using-NodeJS-and-Redis Implementation-of-a-Simple-Key-Value-Store-using-NodeJS-and-Redis Public

    JavaScript 1

  5. caching caching Public

    Nodejs Implementation of Caching

    JavaScript 1

  6. Reinforcement-Learning-based-Bot-for-Tic-Tac-Toe-game Reinforcement-Learning-based-Bot-for-Tic-Tac-Toe-game Public

    Python 1