All Easy Articles
The step() function designs the plot such that, it has a horizontal baseline to which the data points will be connected by vertical lines. This… Read More
This method is used to compute a simple cross-tabulation of two (or more) factors. By default, computes a frequency table of the factors unless an… Read More
The package is an appropriate way to organize the work and share it with others. Typically, a package will include code (not only R code!),… Read More
Almost everything in digital world is connected to cloud in some way or other unless it’s specifically kept in local storage for security reasons. Let’s… Read More
LSTM (Long short term Memory ) is a type of RNN(Recurrent neural network), which is a famous deep learning algorithm that is well suited for… Read More
Decision handling or Condition handling is an important point in any programming language. Most of the use cases result in either positive or negative results.… Read More
Given an array arr[], the task is to find the elements of a contiguous subarray of numbers that has the largest sum. Examples: Input: arr… Read More
Given an integer K, the task is to find a pair of numbers (A, B) such that A – B = K and A /… Read More
Given architecture is an example of a client-server based system. In this, there is a client who sends requests to the server and then the… Read More
A Button is a user interface that are used to perform some action when clicked or tapped. Default Shape of Button In this article, we… Read More
Given an integer N, our task is to check if N can be divided into K consecutive elements with a sum equal to N. Print… Read More
Given string str, the task is to write a recursive program to remove all the occurrences of a character X in the string. Examples: Input:… Read More
For 1-Person game (User vs. CPU), please refer Implementation of Tic-Tac-Toe game  Rules of the Game The game is to be played between two people… Read More
The cout is a predefined object of ostream class, and it is used to print the data on the standard output device. Generally, when we… Read More
Given a vector of arrays, the task is to sort them. Examples: Input: [[1, 2, 3], [10, 20, 30], [30, 60, 90], [10, 20, 10]]… Read More
Pointers and References in C++ held close relation with one another. The major difference is that the pointers can be operated on like adding values… Read More
What is Fuzzy Set ? Fuzzy refers to something that is unclear or vague . Hence, Fuzzy Set is a Set where every key is… Read More
String manipulation is the process of changing, parsing, splicing, pasting, or analyzing strings. As we know that sometimes, data in the string is not suitable… Read More
Given list values and keys list, convert these values to key value pairs in form of list of dictionaries. Input : test_list = [“Gfg”, 3,… Read More
Given a List of elements, map them with keys of matching values from a value list. Input : test_list = [4, 6, 3, 5, 3],… Read More