This complete series of interviewing questions are divided into days for easy and better understanding. Follow the Day pattern and practice coding as much you
Category: Technology
1st simple step to understand and use tuple in C++
Tuple in C++ | Programming in C++: Tuples are objects that pack elements of -heterogeneous types together in a single object. The object of Tuple
You are just a step away from learning anagrams of string Using C++
An anagram of a string is a string that contains the same characters as of another string, only the order of characters can be changed. For example, “nectarpost” and “postnectar”
How to find duplicate characters in a string in simple steps?
Find duplicate characters in a string The simplest way of finding duplicate characters can be achieved in below-mentioned steps: Step 1. Iterate through the string
Artificial intelligence in 2021
Scale AI CEO Alexandr running a four-year-old artificial intelligence based startup, which recently reached milstone of $3.5 billion+, by strong hold in supplying autonomous vehicle companies
How std::make_tuple makes the task simple to construct tuple of appropriate type?
make_tuple | Programming in C++ This is the continuation of my previous post on std::tuple. Please refer std::tuple before reading this post. Ignore if already
Lambda Functions in C++ | Programming in C++
A lambda expression—often called a lambda—is a convenient way of defining an anonymous function object (a closure) right at the location where it is invoked or passed