📰 Dev.to · Abirami Prabhakar
Articles from Dev.to · Abirami Prabhakar · 22 articles · Updated every 3 hours · View all reads
All
⚡ AI Lessons (10765)
ArXiv cs.AIDev.to · FORUM WEBDev.to AIForbes InnovationOpenAI NewsHugging Face Blog

Dev.to · Abirami Prabhakar
5d ago
Digit Manipulation
//Sum of Digits int value = 12345; int res = 0; while ( value > 0){ ...

Dev.to · Abirami Prabhakar
2w ago
Idempotency Situation
Idempotency Situation is a when Even if the same request comes multiple times,it should behave like...

Dev.to · Abirami Prabhakar
2w ago
Atomicity
Atomicity means a transaction is treated as one complete action, not separate steps. All the...

Dev.to · Abirami Prabhakar
2w ago
Filter Assignments
These are the basic building blocks used in SELECT queries to retrieve and filter data from a table....

Dev.to · Abirami Prabhakar
2w ago
Select Queries from DVD Rental database
1.Retrieve film titles and their rental rates. Use column aliases to rename title as "Movie Title"...

Dev.to · Abirami Prabhakar
2w ago
Basic Select SQL Queries
** The basic queries used in select statements are ** From - it is used to specify the table where...

Dev.to · Abirami Prabhakar
3w ago
Remove Duplicates in Sorted Linked List
This problem is about cleaning up a linked list. I was given a sorted linked list, and the task was...

Dev.to · Abirami Prabhakar
3w ago
Merge Sort for Linked List
When I first started working with linked lists, most problems were about traversal or simple...

Dev.to · Abirami Prabhakar
3w ago
Reverse a Linked List
In this problem, I was given the head of a singly linked list and asked to reverse it. At first, it...

Dev.to · Abirami Prabhakar
3w ago
Majority Element
When I first saw this problem, it looked very simple — just count and find the element that appears...

Dev.to · Abirami Prabhakar
3w ago
Search in Rotated Sorted Array
When I first saw this problem, it looked like a normal binary search. But then I noticed something...

Dev.to · Abirami Prabhakar
3w ago
Squares of sorted array
Our task is to create a new array where each element is the square of the corresponding element in...

Dev.to · Abirami Prabhakar
3w ago
Sorting Methods in Arrays
lets first understand what sorting means sorting means arranging elements in a particular order...

Dev.to · Abirami Prabhakar
3w ago
Merge Two Linked List
lets first understand the question Given two sorted linked lists list1 and list2, merge them into...

Dev.to · Abirami Prabhakar
3w ago
Valid Anagram
The valid anagram leetcode problem is used to find if two strings are of equal length and of same...

Dev.to · Abirami Prabhakar
3w ago
Move Zeros
The move zeroes question is a leetcode question that works on rearranging the elements in an array...

Dev.to · Abirami Prabhakar
3w ago
Two Sums
The Two Sum question is a leetcode question that works on finding two numbers in an array whose sum...

Dev.to · Abirami Prabhakar
3w ago
Next Permutation
The next permutation question is a leetcode question that is works on finding the next lexogaphically...

Dev.to · Abirami Prabhakar
3w ago
Kadanes-algorithm
It took me a while to understand the question , the kadanes algorithm is used to find the maximum sum...

Dev.to · Abirami Prabhakar
3w ago
Move all negative elements to end
so the question is to deal with the question that was given Given an unsorted array arr[ ] having...

Dev.to · Abirami Prabhakar
3w ago
To Sort 0s, 1s, and 2s
So today's question deals with sorting the 0's , 1's and 2's in a array in ascending order without...

Dev.to · Abirami Prabhakar
3w ago
To Find the kth Smallest element in a array
lets first undertsand the question from Given an integer array arr[] and an integer k, your task is...
DeepCamp AI