- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Aishwarya Mani Tripathi has Published 25 Articles

Aishwarya Mani Tripathi
24 Views
Partitioning a string into palindromic strings of at least length 2 with every character present in a single string is a challenging problem in computer science. The task is to take a string and divide it into multiple substrings, each consisting of at least two characters and containing every character ... Read More

Aishwarya Mani Tripathi
45 Views
Modifying a string by replacing characters with alphabets whose distance from that character is equal to its frequency is an intriguing problem that involves manipulating strings in a unique way. The task is to take a given string as input and replace each character in the string with an alphabet ... Read More

Aishwarya Mani Tripathi
39 Views
Checking if a Binary String contains A pairs of 0s and B independent 0s or not is a common problem encountered in computer science, particularly in the field of algorithms and data structures. The problem statement is quite simple and plays a significant role in various fields, such as cryptography, ... Read More

Aishwarya Mani Tripathi
22 Views
Modifying string by sorting characters after the removal of characters whose frequency is not equal to the power of 2 is a popular problem in the field of computer programming, particularly in the context of competitive programming. The problem involves taking a string as input and modifying it by removing ... Read More

Aishwarya Mani Tripathi
20 Views
Checking if any pair of consecutive 1s can be separated by at most M 0s by circular rotation of a Binary String is a common problem in computer programming and binary manipulation. The task is to determine whether a given binary string can be rotated in a circular manner such ... Read More

Aishwarya Mani Tripathi
32 Views
Longest Common Subsequence (LCS) is a classic problem in computer science that involves finding the longest subsequence that is present in two given strings. In this tutorial, we will explore a unique approach to solving this problem, which involves repeatedly swapping characters between the two strings until we find the ... Read More

Aishwarya Mani Tripathi
132 Views
In this tutorial, we are going to learn about a JavaScript Program for Pairwise Swapping Elements of a Given Linked List. One common operation on linked lists is swapping adjacent elements in pairs. This operation can be useful in various scenarios, such as reorganizing data, rearranging elements in a specific ... Read More

Aishwarya Mani Tripathi
62 Views
JavaScript Program for pairs such that one is a power multiple of the other is a problem that involves finding pairs of numbers such that one number is a power multiple of the other. In this tutorial, we will be discussing how to write a JavaScript program to solve this ... Read More

Aishwarya Mani Tripathi
114 Views
JavaScript Program for the Number of unique triplets whose XOR is zero is a common programming problem that requires finding the number of unique triplets in a given array whose XOR is equal to zero. The XOR operation is a bitwise operator that takes two bits and returns 1 if ... Read More

Aishwarya Mani Tripathi
51 Views
JavaScript Program for the Number of local extrema in an array is a common problem in the field of computer science and data analysis. In this problem, we are required to find the number of local extrema in an array using JavaScript. Local extrema are the peaks and valleys in ... Read More