Useful git commnads
Git is a version control system which is used by most open source and collaborative programming projects. Below is a list of few very often… Read More »Useful git commnads
Git is a version control system which is used by most open source and collaborative programming projects. Below is a list of few very often… Read More »Useful git commnads
Installing Maven 3 on Ubuntu 13.04 is as straight forward as any other version on Ubuntu. Just hit apt-get and your work is done. $… Read More »How to install Maven 3 on Ubuntu 13.04
Ubuntu 13.04 comes shipped with Open Jdk 7. For couple of reasons you might want to use the Oracle Java 7. This post guides you… Read More »How to install Oracle java 7 on Ubuntu 13.04
This is a collection of few interesting java interview questions that interviews love to ask. Feel free to download and share the book. Download from… Read More »ConfusedCoders Java Interview preparation ebook
package com.test.dev; public class LongestSubSequencePalindrome { /** * @param args */ public static void main(String[] args) { String str = “tatestseatat”; // Any test String… Read More »Longest Subsequence palindrome java implementation