Skip to content
View Dev-Shivam-05's full-sized avatar

Block or report Dev-Shivam-05

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
Dev-Shivam-05/README.md
Header Banner
Typing SVG

📊 Beast Mode Stats Dashboard

Profile Views
🚀 Live Counter
Followers Stars
📈 Growth Metrics
Open to Work
Hire Me
💼 Professional Status
Streak Stats
🔥 Contribution Streak
Practice Time.

⚡ GitHub Performance Dashboard

Profile Details

🎓 Education & Skills Journey

📚 Academic Path



Additional Skills



🔍 View Detailed Progress
WakaTime Stats
⏱️ Coding Activity (Last 7 Days) - Auto-Updates Weekly

🚀 Skill Proficiency



🛠️ Technology Arsenal

JavaScript
JavaScript
C++
C++
Python
Python
MySQL
MySQL
React
React
Docker
Docker
AWS
AWS
GitHub
GitHub
REST API
REST API
Nginx
Nginx

📊 Advanced GitHub Analytics

Stats Streaks
x
📈 Contribution Metrics

🏆 GitHub Achievement Showcase

GitHub Trophies

🎯 Next Achievements to Unlock



🐍 Contribution Graph — Sissa Edition

GitHub Contribution Snake — Custom UI
“Code. Commit. Conquer. — My journey, my style.”

🤝 Let's Connect & Collaborate




💬 Daily Dev Quote

Dev Quote

🧠 Today's Coding Challenge

🎯 Click to reveal today's challenge!
**Challenge: Two Sum Problem** **Date:** October 10, 2024 *(Update this date daily!)* **Difficulty:** 🟡 Medium > Given an array of integers `nums` and an integer `target`, return the indices of the **two numbers** that add up to `target`. > You may assume exactly one solution exists. Return the answer in **any order**. **Example:** - Input: `nums = [2,7,11,15]`, `target = 9` - Output: `[0,1]` - Explanation: `nums[0] + nums[7] == 9`
💡 Hint (Click to Reveal)
Use a hash map to store seen numbers and their indices. For each number, check if its "complement" (target - current) exists in the map.
```javascript
/**
 * @param {number[]} nums
 * @param {number} target
 * @return {number[]}
 */
function twoSum(nums, target) {
  const map = new Map(); // Stores {number: index}

  for (let i = 0; i < nums.length; i++) {
    const complement = target - nums[i];

    if (map.has(complement)) {
      return [map.get(complement), i]; // Found the pair!
    }

    map.set(nums[i], i); // Store current number
  }

  return []; // No solution (edge case, per problem assumption)
}

// Test your solution
console.log(twoSum([2, 7, 11, 15], 9));     // Expected: [0, 1]
console.log(twoSum([3, 2, 4], 6));          // Expected: [1, 2]
console.log(twoSum([3, 3], 6));             // Expected: [0, 1]
```

**Try It Yourself:** Copy the code into your browser console or a JS editor. What's your time complexity? (O(n) with the map!)
**Next Challenge Teaser:** Tomorrow—something with arrays and sorting... 🔮

🌎 Visitor Flags

Profile Views


🌟 Personal Philosophy

Philosophy

🚀 My Developer Mantras

💡 "Innovation happens at the intersection of curiosity and code"
🎯 "Focus on progress, not perfection"
🔥 "Build it, break it, make it better"
⚡ "Learn in public, fail in private, succeed everywhere"

Pinned Loading

  1. GitHub-Contribution-Art-Generator GitHub-Contribution-Art-Generator Public

    🎨 The #1 Open Source tool to draw pixel art on your GitHub Contribution Graph. Customize your profile, boost activity, and stand out instantly. Built with Next.js, MongoDB & GitHub Actions.

    TypeScript 5

  2. shivu-contributions shivu-contributions Public

    Welcome to my creative playground where code meets art! This repo is dedicated to crafting a unique GitHub contributions pattern — spelling out "Shivu" on my profile graph using strategic commits. …

    3 1

  3. devcommand-new-tab-dashboard devcommand-new-tab-dashboard Public

    ⚡ Ultra-lightweight open-source Chrome new tab dashboard for developers. Focus timer, to-do, notes, activity log, voice search, AI search engines, custom backgrounds — zero paywalls, forever free. …

    JavaScript 3

  4. SiteBlitz SiteBlitz Public

    🚀 SiteBlitz: Ultra-High Performance, SEO-Dominant Digital Factory. Engineered for sub-second LCP, 100/100 Lighthouse scores, and 24-hour business deployment. Built with React 19, Vite, and Tailwind…

    TypeScript 3

  5. Supreme_Shivam Supreme_Shivam Public

    HTML 3

  6. DSA_With_CPP DSA_With_CPP Public

    C++ 3