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…
Category: Miscellaneous
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…
Recursive solution of the exponential problem and it’s illustration in detail
This is very common problem that is asked in any interview. So that will be explained below:- Before solving any recursive solution, we have to find the base case first and then the recursive portion. Here if we apply the power rule like a^(4) = a^(2) * a(^2) , then we can see one recursive…
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…
Leet code problem 1631: – Path with Minimum Effort
You are a hiker preparing for an upcoming hike. You are given heights, a 2D array of size rows x columns, where heights[row][col] represents the height of cell (row, col). You are situated in the top-left cell, (0, 0), and you hope to travel to the bottom-right cell, (rows-1, columns-1) (i.e., 0-indexed). You can move…
How to compare “Strings” in Jenkins pipeline scripts?
To compare the “String” we can follow the below approach.