Skip to content

Geeky Codes

Code in a Better Way

  • Home
  • Python
  • Machine Learning
  • Data Science
  • Interview Questions
  • Data Structures and Algorithms
  • Interview
  • Machine Learning From Scratch
Top Tags
  • Python
  • Programming
  • Machine Learning
  • Algorithm
  • Tutorial
  • Efficiency
  • Problem Solving

Latest Post

Why RAG Chatbots Struggle in Production Measuring ROI for a GenAI Initiative in Healthcare Unique Strings with Odd and Even Swapping Allowed Applying SOLID Principles and Dependency Injection in Python Building a Regression MLP Using the Sequential API
Generative AI Machine Learning

Why RAG Chatbots Struggle in Production

December 25, 2025 Geeky Codes No Comments
Machine Learning NLP

Measuring ROI for a GenAI Initiative in Healthcare

December 21, 2025 Geeky Codes No Comments
Algorithms Data Structures and Algorithms Interview Interview Questions Python

Unique Strings with Odd and Even Swapping Allowed

July 4, 2025 No Comments
Interview Interview Questions Python

Applying SOLID Principles and Dependency Injection in Python

July 4, 2025 No Comments
Deep Learning Machine Learning Neural Networks

Building a Regression MLP Using the Sequential API

July 3, 2025 No Comments
  • Latest
  • Popular
  • Trending
Generative AI Machine Learning
Why RAG Chatbots Struggle in Production
Measuring ROI for a GenAI Initiative in Healthcare
Machine Learning NLP
Measuring ROI for a GenAI Initiative in Healthcare
Unique Strings with Odd and Even Swapping Allowed
Algorithms Data Structures and Algorithms Interview Interview Questions Python
Unique Strings with Odd and Even Swapping Allowed
Applying SOLID Principles and Dependency Injection in Python
Interview Interview Questions Python
Applying SOLID Principles and Dependency Injection in Python
Blog
Install and Secure MongoDB 6.0 on CentOS 7
Blog
Installing the mongo-cxx-driver step by step
BSON Library C C++
Installing the Mongodb-C Driver (libmongoc) and BSON library (libbson)
C C++
CRUD Operation in Mongo-cxx
Generative AI Machine Learning
Why RAG Chatbots Struggle in Production
Measuring ROI for a GenAI Initiative in Healthcare
Machine Learning NLP
Measuring ROI for a GenAI Initiative in Healthcare
Unique Strings with Odd and Even Swapping Allowed
Algorithms Data Structures and Algorithms Interview Interview Questions Python
Unique Strings with Odd and Even Swapping Allowed
Applying SOLID Principles and Dependency Injection in Python
Interview Interview Questions Python
Applying SOLID Principles and Dependency Injection in Python
Algorithms Data Structures and Algorithms Interview Interview Questions Python

How to Check if a Number is Prime in Python

April 18, 2024 No Comments

Introduction:Prime numbers are natural numbers greater than 1 that have no positive divisors other than 1 and themselves. Determining whether a given number is prime or not is a common…

Algorithms Data Structures and Algorithms Interview Interview Questions Python

Deleting Nodes with Greater Values on the Right Side in a Linked List

April 16, 2024 No Comments

Introduction:In programming, efficiently managing linked lists is a crucial skill. Deleting nodes with greater values on the right side is a common problem encountered while working with linked lists. In…

Algorithms Data Structures and Algorithms Interview Interview Questions Python

Finding Maximum Difference Type in an Array

April 16, 2024 No Comments

Introduction:Discovering the maximum difference between elements in a Python array is a crucial programming task, often demanding efficient algorithms for optimal results. In this comprehensive tutorial, we’ll delve into Python…

Algorithms Data Structures and Algorithms Interview Interview Questions

Sorting Unique Integers Without Built-in Functions in Python

April 14, 2024 No Comments

Introduction:Sorting a list of unique integers is a common task in programming, often requiring efficient algorithms to achieve the desired result. In this tutorial, we’ll explore how to implement a…

Algorithms Data Structures and Algorithms Interview Interview Questions Python

Character Frequency Counting in Strings

April 14, 2024 No Comments

Introduction: Character frequency counting is a common task in string manipulation, often encountered in various programming scenarios. In this tutorial, we’ll explore an efficient approach to calculate the frequency of…

Algorithms Data Structures and Algorithms Interview Interview Questions Python

String Operations: Efficiently Reverse Substrings

April 14, 2024 No Comments

Introduction: String manipulation is a fundamental aspect of programming, and understanding efficient techniques for performing string operations is essential. In this tutorial, we’ll explore an efficient approach to reverse substrings…

Data Science Interview Interview Questions Machine Learning

Ensemble Learning: A Comprehensive Guide to AdaBoost and Gradient Boosting

April 14, 2024 No Comments

Introduction: In the realm of machine learning, ensemble learning techniques such as AdaBoost and Gradient Boosting have revolutionized the way we approach classification and regression tasks. These powerful algorithms harness…

Algorithms Data Structures and Algorithms Interview Interview Questions Python

Square Root Integral in Python

April 14, 2024 No Comments

Given a number N, find its square root. You need to find and print only the integral part of square root of N. For eg. if number given is 18,…

Python

Understanding Docstrings in Python: Your Guide to Effective Documentation

April 14, 2024 No Comments

Introduction: In Python programming, clear and concise documentation is essential for understanding code functionality, usage, and purpose. Docstrings, Python’s built-in documentation feature, serve as invaluable tools for documenting modules, classes,…

Algorithms Data Structures and Algorithms Interview Interview Questions JAVA Python

Word Patterns | Interview Question at Mastercard

April 14, 2024 No Comments

Introduction: In the world of string manipulation, unraveling patterns and matching sequences play a pivotal role in various applications. In this tutorial, we’ll embark on a journey to decode word…

Algorithms Interview Questions Python

Level Order Traversal Technique for Binary Trees

April 13, 2024 No Comments

Introduction: In binary trees, exploring their structure and nodes in a systematic manner is crucial for various operations and analyses. One such traversal method is the level order traversal, which…

Algorithms Data Structures and Algorithms Interview Questions Python

Minimum Steps to Reduce a Number to 1 Using Dynamic Programming

April 13, 2024 No Comments

Problem Statement: Given a positive integer ‘N’, our objective is to compute and return the minimum number of steps needed to reduce ‘N’ to 1. We have three permissible operations:…

Algorithms Interview Interview Questions Python

Maximum Subarray Sum Challenge with Kadane’s Algorithm

April 13, 2024 No Comments

Introduction: In the realm of algorithmic problem-solving, the quest for the maximum sum of any contiguous subarray within a given array is a classic challenge. In this tutorial, we’ll embark…

Algorithms Interview Questions Python

Finding the Longest Palindromic Subsequence

April 13, 2024 Geeky Codes No Comments

Introduction: Dynamic Programming (DP) is a powerful algorithmic technique used to solve a variety of optimization problems. One classic problem where DP shines is in finding the longest palindromic subsequence…

Algorithms Interview Interview Questions Python

Check If The String Is A Palindrome

April 13, 2024 No Comments

You are given a string ‘S’. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols…

Data Science Machine Learning Python

Implementing Ridge Regression from Scratch

April 13, 2024 No Comments

For Linear Regression in Machine learning with two variables we have to find 2 coefficient. In case of overfitting these 2 coefficients can be very high. Y=mX+c So to handle…

Data Science Machine Learning Pandas Python Random Forest Tutorials

Titanic – Advanced Feature Engineering Tutorial

April 4, 2024 No Comments

Introduction I decided to write this kernel because Titanic: Machine Learning from Disaster is one of my favorite competitions on Kaggle. This is a beginner level kernel which focuses on…

Data Science Machine Learning

Feature Engineering in Machine Learning

April 3, 2024 No Comments

Introduction Feature engineering, often hailed as the cornerstone of machine learning, holds the power to transform raw data into actionable insights. In the realm of predictive modeling, where the quality…

Deep Learning Machine Learning Neural Networks

Avoiding Overfitting Through Regularization

March 27, 2024 No Comments

With thousands of parameters you can fit the whole zoo. Deep neural networks typically have tens of thousands of parameters, sometimes even millions. With so many parameters, the network has…

Deep Learning Machine Learning Neural Networks

Regression and Classification Multi Layer Perceptrons

March 20, 2024 Geeky Codes No Comments

Introduction In the dynamic landscape of machine learning, Multilayer Perceptrons (MLPs) emerge as formidable tools capable of handling both regression and classification tasks with finesse. Whether you’re predicting housing prices…

Posts pagination

1 2 3 4 … 7
Total Visitors
  • 48,633 hits
  • Why RAG Chatbots Struggle in Production
  • Measuring ROI for a GenAI Initiative in Healthcare
  • Unique Strings with Odd and Even Swapping Allowed
  • Applying SOLID Principles and Dependency Injection in Python
  • Building a Regression MLP Using the Sequential API
Top Posts & Pages
  • Logical Computations with Neurons | Deep learning
  • How to Extract Code from a Screenshot with 100% Accuracy?
  • A Journey From Biological to Artificial Neurons
Read more: Regression and Classification Multi Layer Perceptrons

You missed

Generative AI Machine Learning

Why RAG Chatbots Struggle in Production

December 25, 2025 Geeky Codes No Comments
Machine Learning NLP

Measuring ROI for a GenAI Initiative in Healthcare

December 21, 2025 Geeky Codes No Comments
Algorithms Data Structures and Algorithms Interview Interview Questions Python

Unique Strings with Odd and Even Swapping Allowed

July 4, 2025 No Comments
Interview Interview Questions Python

Applying SOLID Principles and Dependency Injection in Python

July 4, 2025 No Comments

Geeky Codes

Code in a Better Way

Geeky Codes
Proudly powered by WordPress Theme: Newsup.
 

Loading Comments...