Sharmin Shanta

Sharmin Shanta @sharminshanta

About: Backend Engineer | 5+ yrs | PHP | Python | Microservices | MySQL | MongoDB | Redis | Elasticsearch | JavaScript

Location:
Dhaka, Bangladesh
Joined:
Oct 3, 2024

Sharmin Shanta
articles - 14 total

What are L, R, K, and N in an array?

In different contexts, "L" and "R" can represent different things, such as indices, values, or...

Learn More 1 0Dec 18 '24

Evaluation of Software Architecture

https://www.linkedin.com/posts/activity-7273746316512374784-W1Br?utm_source=share&utm_medium=memb...

Learn More 1 0Dec 14 '24

Free APIs for study and practice

Application Programming Interfaces, the acronym APIs, are used in web applications for various...

Learn More 0 0Dec 14 '24

Linear Search in PHP

The easiest DSA algorithm (Data Structure and Algorithm) is Linear Search. It's simple to implement...

Learn More 1 0Dec 13 '24

Find out the GCD(Greatest Common Divisor) of the given two numbers in PHP.

It's a manual process to find out the GCD of given two numbers that we've learned in our childhood in...

Learn More 1 0Dec 13 '24

Anagram in PHP

Check whether a given string is an anagram of another given...

Learn More 1 0Dec 12 '24

Check whether a given string is an anagram of another given string.

/** * Check if a word is an anagram of another word * Break Down the Problem: * a. Checking...

Learn More 4 0Dec 12 '24

What is Anagram?

Anagram is a word OR phrase formed by the letters of the word OR phrase, generally using the letters...

Learn More 1 0Dec 12 '24

Sort an array in PHP

$arr['one'] = 1; $arr['three'] = 3; $arr['four'] = 4; $arr['two'] = 2; $arr['five'] =...

Learn More 1 0Dec 4 '24

Variadic Function in PHP

A variadic function is a function that accepts a variable number of arguments with three dots(...)...

Learn More 1 0Dec 4 '24

Time Complexity

We encounter frequently the term Time Complexity, while learning the Data Structure and Algorithm. It...

Learn More 1 0Nov 25 '24

What is a PHP file?

A PHP file is a text file that contains PHP code, generally with a .PHP extension. It is an integral...

Learn More 1 0Nov 24 '24

API Throttling

API throttling is a technique that limits the number of requests a user can make to an API within a...

Learn More 1 0Nov 23 '24

Product of Array Elements Except Self in PHP

Solution #1: function productArray($arr, $n) { // Base case if ($n == 1) { echo...

Learn More 1 0Nov 23 '24