This repository contains certain problem statements or the challenges faced by me in 2016, solved in Java-7 and html.
- Challenge 1 : LookNSay
- This program is just like its name, it says what it looks at.
- For example: In a String like 144 it will see one 1 and two 4 so, it'll write 1124. Likewise it'll continue till the size that user has entered. The next output for same example will be 211214 ans so on.
- Challenge 2 : MultipleLetters:
- This program works on a similar basis as LookNSay.
- But the only difference is that it'll give the count of consecutive letters appearing in a string only once.
- For example: For a String like AaaBbC, it'll give the output as 3a2b1c.
- Challenge 3 : My website
- This folder contains two web pages.
- Bootstrap has been used as a framework.
- Challenge 4 : Error Message
- This program basically takes a list of strings as input and a specific string to be searched as an input.
- Then the string is matched with all the strings present in the list.
- Now those strings having same or upto two letters error with the original string are printed on the screen with a message like:
Did you mean "this"? or "this" - For example: list is {commit,hello,meet} and entered string is comit. so output should be : Did you mean commit?