About Me
Motivated Software Developer skilled in Java, Python, JavaScript, and C++, with a strong foundation in backend development, RESTful API design, and database management. Experienced in building scalable and high-performance applications using Node.js, Express.js, Flask, and MongoDB/PostgreSQL. Proficient in version control (Git/GitHub), containerization (Docker), and CI/CD pipelines using GitHub Actions.
Passionate about problem-solving, data structures, algorithms, and system design, with a proven track record in competitive coding and full-stack application development. Known for quickly adapting to new technologies and delivering robust, efficient code in collaborative environments.

Location
Haldwani, Uttarakhand
Education
B.Tech in Computer Science
CGC, Mohali
Experience
Fresher
DSA Problems
1300+ Solved
Featured Projects
Check out some of my recent work

Code Snippets
Explore some of my code solutions and implementations
// Binary Search implementation in JavaScript
function binarySearch(arr, target) {
let left = 0;
let right = arr.length - 1;
while (left <= right) {
const mid = Math.floor((left + right) / 2);
if (arr[mid] === target) {
return mid; // Target found
} else if (arr[mid] < target) {
left = mid + 1; // Search in the right half
} else {
right = mid - 1; // Search in the left half
}
}
return -1; // Target not found
}
// Example usage
const sortedArray = [1, 3, 5, 7, 9, 11, 13, 15, 17];
const targetValue = 7;
const result = binarySearch(sortedArray, targetValue);
console.log(`Found ${targetValue} at index: ${result}`);