#javascript
Read more stories on Hashnode
Articles with this tag
You will be given a string. Write a program which returns a string after removing repeated characters from the string. Result Example Solution -...
1. What is Insertion Sort? Insertion sort is a simple sorting algorithm that builds up the sort by gradually creating a larger left half which is...
Write a program to print a letter in the middle when given a string. If the length of a string is even number, print two middle letters. Result...
You will be given a string with mixed upper and lower case letters. Write a program to switch uppercased letters to lowercased letters, and lowercased...
You will be given a string with mixed upper and lower case letters. Write a program which returns UPPERCASED string. Result Example Solution Declare...
1. What is Selection Sort? Selection sort is pretty much similar to the bubble sort, but instead of first placing large values into sorted position,...