Python Python Sum Lambda [3 different ways] In this article, we have presented 3 approaches to use lambda to get the sum of all elements of a list along with complete Python code.
Culture Guess the Programming Language? Do you know all languages well enough such that if they speak up one day, you will be able to identify them?
Machine Learning (ML) Delta Rule in Neural Network We shall be discussing Delta rule in neural networks that is used to updated weights during training a Neural Network.
List of Interview Questions Interview questions on OOP concepts Questions about OOP concepts are asked in every organization during interviews, be it product-based or service based. This article covers the most important questions you need to crack any technical round.
Machine Learning (ML) Kohonen Neural Network The Kohonen Neural Network (KNN) also known as self organizing maps is a type of unsupervised artificial neural network. This network can be used for clustering analysis and visualization of high-dimension data.
Algorithms Heap vs Binary Tree Today we are going to compare two non linear data structures binary trees and heaps since both are non liner there tend to be confusion regarding both of these usually we will try to remove these confusion.
Python Improve your Python code speed The impact might seem trivial for small programs but the impact becomes so evident when code complexity grows. In the receding paragraphs, I will point out ways to improve your python code.
C++ Duff device in C++ In this article, we will discuss about duff device in C++ with help of example. This is an optimization technique related to Loop Unrolling.
C++ RAII in C++ In this article, we will discuss RAII or Resource Acquisition Is Initialization approach in C++ with help of an example.
Algorithms Graph and subgraph isomorphism In this article, we will learn about graph and subgraph isomorphism and the algorithms to check for graph and subgraph isomorphism.
List of Interview Questions Culture Fit interview for Data Science job [Mock] In this article, we will get to know the flow of a culture fit interview for a Data Science job and some pointers on how you could answer the questions asked.
List of Mathematical Algorithms Lagrange’s Four Squares Theorem In this article, we will discus Lagrange’s four square theorem in detail with examples and an algorithm to verify it.
List of Mathematical Algorithms Mersenne prime numbers When 2^n -1 is prime, it is said to be a Mersenne prime. In this article, we have explored this concept of Mersenne prime numbers in depth along with algorithms + implementations to find Mersenne prime numbers.
Linux How Terminals display color? Terminals display color using escape sequences(ANSI escape codes for our case).If an escape character(\033) is receded by a byte in the range 0x40-0x5F, then the interpretation of the escape sequence is delegated to the C1 control code.
Machine Learning (ML) Gradient Ascent Gradient Ascent as a concept transcends machine learning. It is the reverse of Gradient Descent, another common concept used in machine learning. Gradient Ascent (resp. Descent) is an iterative optimization algorithm used for finding a local maximum (resp. minimum) of a function.
Culture Mingyang Deng Mingyang Deng is one of the leading Competitive Programmers from China. He is the Youngest Programmer to become Legendary Grandmaster in CodeForces at the age 16 and currently, holds rank 5 worldwide on the platform.
List of Interview Questions BERT Interview Questions (NLP) In this article, we will go over various questions that cover the fundamentals and inner workings of the BERT model.
HTML SVG in HTML In this article, we will learn about the SVG tag in HTML. SVG stands for Scalable Vector Graphics and it is one of the modern ways of displaying images in websites and applications just like displaying PNG, GIF, and JPG.
Culture How Uber got hacked? [Complete Report] In this article, we have explored how Uber got hacked using MFA and what can be done to prevent such hacking attacks in future. Any company can fall for this attack.
TensorFlow No matching distribution found for TensorFlow using pip [SOLVED] In this article, we have presented the reason behind the error "No matching distribution found for TensorFlow using pip" along with 3 approaches to fix it.
System Design Probnik: Netflix's innovation testing framework Netflix is technologically one of leading Software Companies in the World. They serve their customized homepage in milliseconds, no server outrage can bring Netflix down and much more. In this article, we explored Netflix's approach towards testing framework named Probnik.
Algorithms Greedy Algorithm vs Dynamic programming In this article, we will discuss greedy methods vs dynamic programming. Both of them are used for optimization of a given problem. Optimization of a problem is finding the best solution from a set of solutions.
Algorithms Time and Space Complexity of Prim’s algorithm In this article, we will learn more about Prim's algorithm and analyze its complexity for different cases and implementation approaches.
Culture Why Adobe acquired Figma for 20 Billion Dollars? Adobe acquired Figma for 20 Billion Dollars but why Adobe paid a huge price during the recession?
Machine Learning (ML) Out-of-Bag Error in Random Forest [with example] In this article, we have explored Out-of-Bag Error in Random Forest with an numeric example and sample implementation to plot Out-of-Bag Error.