Hello, I'm Your Name
Coder | Problem Solver | Blogger
Contact MeWhy and When I Started My Coding Journey
My coding journey began in 2021, driven by curiosity and a desire to solve real-world problems. I was fascinated by how technology shapes our lives and wanted to create solutions that make a difference.
Initially, I started with Python, building simple automation scripts and exploring web development. The thrill of seeing my code come to life motivated me to dive deeper into algorithms and data structures.
Over time, coding became more than a skill—it became a passion. I participated in coding competitions, collaborated on open-source projects, and built web applications using Django and modern web technologies.
Today, I continue to learn, solve new challenges, and share my experiences through blogs and tutorials, hoping to inspire others to start their own journeys.
Problem of the Day
Two Sum (LeetCode #1)
Problem: Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
// LeetCode #1: Two Sum
def twoSum(nums, target):
lookup = {}
for i, num in enumerate(nums):
if target - num in lookup:
return [lookup[target - num], i]
lookup[num] = i
See More Solutions
My Resume
Coding Skills
Proficient in Python, C++, and web development. Experienced with Django.
Problem Solving
Active participant in coding competitions. Solved 500+ problems on LeetCode, Codeforces, and HackerRank.
Projects
Developed web apps, automation tools, and contributed to open-source. See my blog for details.
Education
Bachelor’s in Computer Science, XYZ University (2021-2025).