AHAshfaq Hussainindevlogs.hashnode.dev路Apr 28, 2024 路 12 min readEssential Git Commands HandbookWhat is Git Git is a distributed version control system that tracks changes in any set of computer files, usually used for coordinating work among programmers who are collaboratively developing source code during software development. Git's goals in...00
AHAshfaq Hussainindevlogs.hashnode.dev路Apr 20, 2024 路 6 min readStructuring NextJS projectsComing from a React.js world, learning Next.js is fun. There are many features in Next.js, but today we will discuss file-based routing in Next.js. I really like file-based routing. There is no need to add any extra packages and configure it. Just cr...00
AHAshfaq Hussainindevlogs.hashnode.dev路Apr 18, 2024 路 2 min read217. Contains Duplicatehttps://leetcode.com/problems/contains-duplicate/ Approach Brute force take the first element and compare it to every other element that would be n operations to check whether the first number is duplicate or not. We have to do it for every number...00