Search found 2 matches

by L0RI
Sun May 29, 2011 1:55 pm
Forum: Challenges Solved
Topic: Ave
Replies: 17
Views: 2727

I used Java: public class caesar { public String caesar(String in, int Offset){ String s=in.toLowerCase(); String out=""; for(int i=0;i<s.length();i++){ if(s.charAt(i)<61 || s.charAt(i)>122){ out=out+s.charAt(i); continue; } char t=(char) (s.charAt(i)+Offset); if((s.charAt(i)+Offset)>122){...
by L0RI
Fri May 27, 2011 9:16 pm
Forum: Challenges Solved
Topic: 3280
Replies: 20
Views: 2552

I used this Site:
http://elmar-eigner.de/word-count.html
Then, I put the result in Excel and sorted it by length.