Skip to content
View aakashk7092's full-sized avatar

Block or report aakashk7092

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse
aakashk7092/README.md

LinkedIn GitHub LeetCode Codeforces Email


πŸ‘¨β€πŸ’» About Me

B.Tech CSE student at Invertis University, Bareilly. Focused on C++, Data Structures & Algorithms, and understanding systems at a deeper level β€” from cache eviction policies to embedded hardware.

  • πŸ’» Primary language: C++
  • πŸ† Competitive programming across LeetCode, CodeChef, GeeksforGeeks
  • 🌱 Open source enthusiast, GSoC aspirant
  • 🎯 Preparing for SDE internships & entry-level software roles

πŸ› οΈ Tech Stack

Focus Tools & Languages
Primary C++
Also using Python, Java, C
Systems Cache design (LRU/LFU)
Version Control Git, GitHub
Dev Environment Linux, VS Code, CMake

🌳 Tech Stack Tree

graph TD
    A[Tech Stack] --> B[Languages]
    A --> C[Systems Focus]
    A --> D[Tools and Workflow]
    A --> E[Practice Arenas]

    B --> B1[C++ Primary]
    B --> B2[Python]
    B --> B3[Java]
    B --> B4[C]

    C --> C1[Cache Design LRU / LFU]

    D --> D1[Git]
    D --> D2[GitHub]
    D --> D3[Linux]
    D --> D4[VS Code]
    D --> D5[CMake]

    E --> E1[LeetCode]
    E --> E2[CodeChef]
    E --> E3[GeeksforGeeks]
    E --> E4[Codeforces]

    style A fill:#8E54E9,color:#fff,stroke:#4776E6,stroke-width:2px
    style B fill:#4776E6,color:#fff
    style C fill:#4776E6,color:#fff
    style D fill:#4776E6,color:#fff
    style E fill:#4776E6,color:#fff
Loading

πŸš€ Featured Projects

πŸ—„οΈ LRU Cache Implementation (C++)

O(1) Least-Recently-Used cache using a HashMap + Doubly Linked List.

Tags: C++ Hash Map Linked List System Design

β†’ View Repo

πŸ“Š LFU Cache with Frequency Tracking (C++)

Extended the LRU design to track access frequency with LRU as a tiebreaker, keeping all operations O(1).

Tags: C++ Frequency Tracking Cache Eviction

β†’ View Repo

🧩 LeetCode DSA Repository

LeetCode C++ solutions organized by data structure/topic for quick review rather than scattered one-offs.

Tags: C++ Data Structures Algorithms

β†’ View Repo

βš”οΈ Codeforces Problems

Contest and practice problem solutions.

Tags: C++ Competitive Programming

β†’ View Repo


πŸ“Š Competitive Programming Profiles

LeetCode Stats

GeeksforGeeks Stats

Difficulty (GeeksforGeeks) Solved
Basic 37
Easy 35
Medium 12
Hard 0
Total 84
Platform Profile Notes
GitHub aakashk7092 25 repositories
LeetCode aakashkumar2005 Rank 54,421, 20 badges earned including a 365-day activity badge
CodeChef aakashk7092 305 problems solved, Silver Problem Solver badge
GeeksforGeeks aakasho65a 84 problems solved
Codeforces aakashkumar2005 Unrated, early stage on this platform

πŸ“ˆ GitHub Analytics

GitHub Stats GitHub Streak

Top Languages

GitHub Trophies


🐍 Contribution Snake

GitHub Contribution Snake


πŸŽ“ Education

B.Tech in Computer Science & Engineering Invertis University, Bareilly


Open to SDE internship opportunities, collaborations, and DSA discussions.

Pinned Loading

  1. leetcode-cpp-dsa leetcode-cpp-dsa Public

    LeetCode C++ solutions organised Data Structure wise

    C++

  2. LRU-Cache-DSA-Library LRU-Cache-DSA-Library Public

    Efficient LRU Cache implementation and core data structures in C++

    C++

  3. LFU-Cache-CPP LFU-Cache-CPP Public

    O(1) LFU Cache implementation in C++ using HashMaps and Doubly Linked Lists

    C++