Home
Gaurav's GitHub Page
Cancel

String Palindrome

Problem Description: Palindrome String package com.gauk; public class Solution { /* * Given a string, determine if it is a palindrome, considering only * alphanumeric characters and igno...

Find Square Root

Problem Description Given a number N, find the square root of that number. If the number is not a perfect square, then return -1 Solution First approach - Brute Force Brute Force: Loop through ...