Summary Of “The Alchemist” By Paulo Coelho

Buy on Amazon: Print | Kindle | Audio book The Book in Three Sentences: – The Few Big Ideas: – Summary Of the Book: – Recommended Books If you found This helpful, you may also be interested in these related books: Buy The Book: Mindset Print | Kindle | Audio book Related Books Or,browse more…

Leet Code 42:- Trapping rain water solution

Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining. Here we have to calculate the total trapped water area under this blocks. To solve this problem, best approach is to use the double counter. Will start from each end…

Jenkins API & Confluence Integration for Test Reporting: A step-by-step guide

Introduction Test reporting is one of the most important tools used by software development teams to keep track of testing progress, troubleshoot issues, and make better decisions. In this blog, we’ll look at how you can integrate Jenkins API with Confluence to build dynamic pie charts that show test pass and test fail results. This…

Leet code problem 1733: – Minimum Number of People to Teach

On a social network consisting of m users and some friendships between users, two users can communicate with each other if they know a common language. You are given an integer n, an array languages, and an array friendships where: You can choose one language and teach it to some users so that all friends…

Leet code problem 1641: – Count Sorted Vowel Strings

Given an integer n, return the number of strings of length n that consist only of vowels (a, e, i, o, u) and are lexicographically sorted. A string s is lexicographically sorted if for all valid i, s[i] is the same as or comes before s[i+1] in the alphabet. Example 1: Input: n = 1Output:…

Leet code problem 1638: – Count Substrings That Differ by One Character

Given two strings s and t, find the number of ways you can choose a non-empty substring of s and replace a single character by a different character such that the resulting substring is a substring of t. In other words, find the number of substrings in s that differ from some substring in t…