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…

Can we use multiple karate config files for karate dsl?

Sometimes depending on the situations, we may need multiple config.js files. But the question is how to define them in the karate class path. One most easy and convenient approach is to call those files from the main karate config.js file as mentioned below code snippet. Here in the above case the ‘karate.env’ variable can…

How to set-up Karate in Windows machine for API testing?

Please follow the below mentioned steps: – 1. Open the below mentioned link: –README file for karate 2. Go to the index section and check the Quickstart link as shown below. 3. Copy the below mentioned code. Windows machine must have java and maven installed. From command prompt go to the project location and paste…

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 1664: – Ways to Make a Fair Array

You are given an integer array nums. You can choose exactly one index (0-indexed) and remove the element. Notice that the index of the elements may change after the removal. For example, if nums = [6,1,7,4,1]: An array is fair if the sum of the odd-indexed values equals the sum of the even-indexed values. Return…

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:…