Blog Detail
Java Twisters - Java Quiz with a difference
http://www.java-twisters.blogspot.com/
Twisters is a coding competition with a difference.
It requires that you write a very simple Code. Most of the programs are not more than 20 lines!!!
E.g.: Write a Code to add two integers :-).
Twist – Do not use the plus sign in the entire program
Recent Posts
Java Puzzler - on Code-o-matic
I don't have a puzzle of my own today - I've covered up most things I know & I really don't want to end up repeating myself! So for now I am going to point you to a puzzle I had come across some time ago - http://code-o-matic.blogspot.com/2009/02...
Puzzle 59 – Comparing the Java way.
A really cool part of the collection framework is the Collections.sort() function. The function sorts out a collection based on the natural ordering of elements. Of course – for you own data types you need to define what the ‘natural’ ordering ...
So where is the puzzle this week?
I have been a irregular with puzzles on Twister for some time now – for one I have covered most of the puzzles that could be covered in the twister format and secondly I been working on Quiz4j – adding puzzles and quizzes to it.When I started Qui...
Puzzle 58 – Solution
There are a couple of solutions possible for this puzzle – I’ll leave figuring out how these solutions work to you!The first one,package com.twister;import java.util.ArrayList;import java.util.List;public class Gener { public void read(List<?...
Puzzle 58 – Simple Upgrade.
Language – Java | Type – Concept | Last date 15-Nov-2009 12:00 p.m. IST | Points 3Here is the puzzle straight and simple. A piece of code was written which had a read() method with the signature below. Thing change and instead of using integers â...
Puzzle 57 – Solution
Here is the first solution that works for last weeks puzzle,class X{ public static void main(String[] a){ System.out.print(a[0]); } }Run the program as given belowjava X "Hello World"The second one – (the one that I had in mind) isclass X...

