top of page
Search

Checking Unique Strings and String Permutations in Python
Introduction String manipulation is a fundamental concept in programming, often requiring checks for uniqueness and permutations. In this...
Mr. Data Bugger
Feb 191 min read
2 views
0 comments
Finding the Greatest Common Divisor of Two Strings Without GCD
Problem Statement Given two strings str1Â and str2, we need to find the largest string XÂ such that both str1Â and str2Â are formed by...
Mr. Data Bugger
Feb 182 min read
1 view
0 comments


Optimizing Array Computation: Product of Array Except Self
Introduction In this blog, we will explore an efficient algorithm to compute the product of an array except for the current element,...
Mr. Data Bugger
Feb 132 min read
2 views
0 comments


Merging Strings Alternately in Python: A Two-Pointer Approach
String manipulation is a common problem in programming, often requiring efficient solutions. One such problem is merging two strings by...
Mr. Data Bugger
Feb 122 min read
2 views
0 comments


The Two-Pointer Strategy in Algorithms
Introduction The two-pointer strategy is a powerful technique used in various algorithmic problems, especially those related to arrays...
Mr. Data Bugger
Feb 122 min read
9 views
0 comments


Efficiently Finding Duplicates in a List Using Python
Finding duplicates in a list is a common problem in programming. A straightforward but inefficient way is to use nested loops, resulting...
Mr. Data Bugger
Feb 83 min read
29 views
0 comments

Finetune LLM( from openai) using LangChain ( for beginners)
Large language models (LLMs) are emerging as a transformative technology, enabling developers to build applications that they previously...
Mr. Data Bugger
Aug 24, 20232 min read
104 views
0 comments
Sentiment Analysis using NLTK and Sklearn in Python
Data can be downloaded from - http://www.cs.cornell.edu/people/pabo/movie-review-data/review_polarity.tar.gz Step 1 - loading required...
Mr. Data Bugger
Jun 5, 20212 min read
81 views
0 comments
bottom of page