HSharsh sehrawatinharsehrawat.hashnode.dev·Oct 21, 2024 · 4 min readHeight of BinaryTreeLet's explain how the maxDepth function calculates the height of a binary tree using a diagram and a step-by-step breakdown of each iteration. We'll use the following binary tree as an example: 1 / \ 2 3 / \ 4 5 Tree Structur...00
HSharsh sehrawatinharsehrawat.hashnode.dev·Jul 10, 2024 · 2 min readConcept Of Bearer Authorization, Bearer Token and JWT Token .Bearer authentication, JWT bearer, and bearer token are closely related concepts often used interchangeably, but they have specific distinctions: Bearer Authentication: Bearer authentication is a method where the client must send a token with each ...00
HSharsh sehrawatinharsehrawat.hashnode.dev·Jun 25, 2024 · 1 min readData Flow of Large-scale project .Controller receives an HTTP request and converts it to a Request object. Controller calls the Service layer method with the Request object. Service layer processes the Request object, applies business logic, and interacts with the Repository layer....00
HSharsh sehrawatinharsehrawat.hashnode.dev·Jun 21, 2024 · 1 min readAzure DevOpsOverview Azure DevOps, provided by Microsoft, is a suite of development tools integrated with Microsoft’s cloud platform, Azure. It offers a comprehensive set of services for managing the entire development lifecycle. Key Features Azure Repos: Git r...00
HSharsh sehrawatinharsehrawat.hashnode.dev·Jun 21, 2024 · 3 min readUnderstanding Git .How Git Works: Repositories: A repository (or repo) is a directory that contains your project files and the entire history of changes. Commits: A commit is a record of your repository at a given point in time. It contains the changes made and a mes...00