Single Number is a problem statement that is based on arrays from Data Structures and Algorithms. In this problem, we can find the single number that occurs an odd number of times in the given array.
The first approach to solve this problem is: Brute Force Algorithm
As you can see we have ... Views: 487
Why we need recursion?
Any problem can be solved by a recursive method as well as by the iterative method. But whenever we have a problem that is complex to do just by iterative/looping method. Then we are going to divide the problem into a smaller instance of the same problem that means we ... Views: 503
Leaders in an array is an easy problem of arrays from Data Structures and Algorithms. Leaders in the array mean that element is greater than all its right side elements of the array.
So there are two approaches to find the leaders in an array:
Brute Force Algorithm
Scan Array from ... Views: 540
Steps Involved in Web Crawling
To perform this tutorial step-by-step with me, you’ll need Python3 already configured on your local development machine. You can set up everything you need before-hand and then come back to continue ahead.
Creating a Basic Web Scraper
Web Scraping is a ... Views: 476
What is MongoDB?
It is a DataBase.
Mongo Means Humongous (It can store lots of Data)
MongoDB is NOSQL Based DB , it is Schema Less and it has Less Or No Relationships.
It contains Collections. Inside Collections we have Documents. It is good for Heavy Data , Extensive Read/Write DB ... Views: 461
Data pre-processing is a data mining technique which is used to transform raw data into a useful format.
Steps Involved in Data Pre-processing:
1. Data Cleaning
“The idea of imputation is both seductive and dangerous” (R.J.A Little & D.B. Rubin)
One of the most common problems I have ... Views: 522
As mobile hardware is progressing, the demand for mobile apps has started increasing. Software developers were looking for a platform that could make mobile apps fast.
Today we are going to talk about React-Native and Flutter.
Flutter
Flutter is an open source UI (SDK) created by Google. ... Views: 527
NLP short for Natural Language Processing is one of the major areas of Data Science. When it comes to text processing or when you send or receive some sort of data in any text format whether it is a mail or a message or anything else then just think about it that how you are going to apply ... Views: 453
What do you want to become :
Perfect Data Analyst or,
Full Stack Data Scientist ?
First, understand the difference between the jobs here. If you just want to become a Data Analyst with few concepts of machine learning as well, then you can just go with R Programming without any second ... Views: 522
Learn various tips and tricks based on print()
Various Tips and Tricks:
To perform this tutorial step-by-step with me, you’ll need Python3 already configured on your local development machine. You can set up everything you need before-hand and then come back to continue ahead.
1. ... Views: 398
Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses Chromium V8 Engine and is built in Rust Programming Language.
Installing Deno
Go to deno.land
Now click on install menu in the deno.land’s menubar
Now, based on Your OS , you can install by using listed ... Views: 458
Templates are a very powerful feature in C++ because templates allow you to write generic programs. It means we can only write one program that is used for different types of data.
C++ is an object-oriented programming language (OOPs). Because C++ programming language viewing the problems in ... Views: 488
Blender is a free to use and open-source 3D graphics software used for creating animated films, visual effects, 3D printed models, motion graphics, interactive 3D applications, and computer games.
WHY BLENDER ?
There are many softwares like maya , 3D’s Max but why blender can be a better ... Views: 455
Data Science has become a hub of opportunities now a days. It is taking care of each domain of the industry whether it is IT, Electronics, Mechanical, Medical or research. Anyone from any background can go for data science today. Data Science is a combination of programming and mathematics. You ... Views: 536
In this Blog we are going to learn ES 2020 Key Features.ES2020 released on Start of this year.
Here we are going to learn some really cool features of ES 2020
Let’s start with Feature 1 : Nullish coalescing
Use when the value is missing (undefined or null (It doesn’t work with NaN , ‘’, ... Views: 496
Python is the most popular language among developers as well as non-developers. Its simple syntax and one-liners take this programming to the next level. In this blog, we are going to cover the top 20 python tips and tricks that you must know.
These tricks will be covered :
Swapping of 2 ... Views: 560