🚀 DSA Practice Problems
Easy
findMaximum
Given an array of integers, return the largest element present in the array. Do not use any built-in sorting functions.
Easy
Palindrome String
Given a string s, determine whether it is a palindrome. A palindrome reads the same forward and backward. Return \"YES\" if the…
Easy
Reverse String
Given a string s, return the string in reverse order. You are not allowed to use any built-in reverse function. Implement your…