2017-11-19
#HackerRank
#Solution
#Regular Expression Solution /* Solution to HackerRank: Vowels in the Back * URL: https://www.
2017-11-19
#HackerRank
#Solution
#Regular Expression Solution /* Solution to HackerRank: Balanced Strings * URL: https://www.hackerrank.com/contests/regular-expresso/challenges/balanced-strings */ "^(ab|ba)+$" possible strings: ababab abba babaab but not: a bab abbaaba
2017-11-19
#HackerRank
#Solution
#Regular Expression Solution /* Solution to HackerRank: Winning Tic Tac Toe * URL: https://www.
2017-11-18
#HackerRank
#Solution
#Java Solution Iterate through each city and check if it is already under range of previous tower.
2017-11-18
#HackerRank
#Solution
#Java Solution Sort the array of numbers Find the minimum difference between ith and (i+K-1)th element in each iteration.
2017-11-18
#HackerRank
#Solution
#Java Solution Iterate the sides in descending order Check if sides make a triangle by checking if sum of two sides is greater than third side .
2017-11-18
#HackerEarth
#Solution
#Java
#Binary Tree Solution Parse input and build the tree by maintaining an index HashMap.
2017-11-15
#Google Analytics
#NodeJS
#NPM
#Tutorial Google analytics is a popular tool to track your website usage.
2017-11-09
#HackerRank
#Solution
#Java Solution #1 Keep indexes of all numbers in a HashMap. Check if current maximum number is already at desired index i.
2017-11-08
#HackerRank
#Solution
#Java Solution Iterate through each house in a sorted order. Check if current house is in range of last transmitter.