
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Arnab Chakraborty has Published 4293 Articles

Arnab Chakraborty
302 Views
Suppose we have two integer arrays, src and tgt, both are of same length. We also have an array allowedSwaps where allowedSwaps[i] contains a pair (ai, bi) indicates that we can swap the elements at index ai with element index bi of the array src. (We can swap elements at ... Read More

Arnab Chakraborty
1K+ Views
Suppose we have a list L and another value k. We have to swap kth node from start and kth node from end and return the final list at end.So, if the input is like L = [1, 5, 6, 7, 1, 6, 3, 9, 12] k = 3, then ... Read More

Arnab Chakraborty
123 Views
Suppose there is a sensor module that can monitor its nearby environment up to a radius of r. There are some things in the lattice point of the module's monitoring circle that needs to be monitored. So, k number of low-powered modules are placed so that they can monitor only ... Read More

Arnab Chakraborty
304 Views
Suppose we have a number n, we have to find a sequence that satisfies all of the following rules โ1 occurs once in the sequence.Each number in between 2 and n occurs twice in the sequence.For every i in range 2 to n, the distance between the two occurrences of ... Read More

Arnab Chakraborty
216 Views
Suppose we have an array of few elements. We shall have to find the maximum weighted sum if the array elements are rotated. The weighted sum of an array nums can be calculated like below โ$$\mathrm{๐=\sum_{\substack{๐=1}}^{n}๐โ๐๐ข๐๐ [๐]}$$So, if the input is like L = [5, 3, 4], then the output will ... Read More

Arnab Chakraborty
134 Views
Suppose we have a list of elements we can calculate the value of S by the following algorithm.while size of L > 1 is non-zero, do ย ย a := L[0] ย ย b := L[1] ย ย remove L[1] ย ย L[0] := a + b + a*b return L[0] mod (10^9 + ... Read More

Arnab Chakraborty
486 Views
Suppose there are n number of cities and the cities are connected with two types of roads; highways and shortcuts. Now, there is a map and only the highways are present on the map and all the shortcuts are absent. The transport division of the cities wants to launch a ... Read More

Arnab Chakraborty
213 Views
Suppose we have a string s and two values x and y. We can perform given two types of operations any number of times.Search substring "ab", if present, then we can gain x points by removing it.Search substring "ba", if present, then we can gain y points by removing it.We ... Read More

Arnab Chakraborty
463 Views
Suppose there is a weighted graph with n vertices and m edges. The edges have the weights in powers of 2. Any vertex can be reached from any vertex in the graph, and the cost of travel will be the addition of all the edge weights in the graph. We ... Read More

Arnab Chakraborty
170 Views
Suppose there are n cities and that are connected with n -1 roads. A city can be visited from any other city. Now the postal system of the cities delivers k letters daily. The letter's destination can be any of the k different cities. A postal worker has to deliver ... Read More