School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!
Welcome to Dream.In.Code
Become an Expert!

Join 306,870 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,696 people online right now. Registration is fast and FREE... Join Now!



's Contributions
Below are the tutorials, code snippets, and resources has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
No Tutorials Submitted.
Code Snippets
Submitted: October 9, 2009        Views: 37
This snippet sorts an array of ints using the Bubblesort method.
Submitted: September 26, 2009        Views: 82
This cipher encrypts a String based on the Caesar Cipher, (characterIndexInAlphabet + 3)%26. Characters that are not letters are added back into the ciphertext String without any modification.
Submitted: October 11, 2009        Views: 7
Calculates n factorial (n!) iteratively.
Submitted: October 12, 2009        Views: 9
This snippet finds the mode of an array of ints using a map.
Submitted: October 6, 2009        Views: 113
This snippet is a hybrid between insertion and bubble sorts. Upon optimization, gnome sort becomes insertion sort.
Submitted: October 10, 2009        Views: 6
This program calculates Pi to the nth iteration using the Leibinz series.
Submitted: August 19, 2009        Views: 158
Determines if a String of characters is a palindrome.
Submitted: September 14, 2009        Views: 44
This snippet will print out the given number of Primitive Pythagorean Triples as noted in the parameter.
Submitted: October 3, 2009        Views: 165
Generates a random integer within a range and offset (ie., range = 3, offset = 1, random number between 1-3.). An offset of 0 generates a random integer between 0 and the range.
Submitted: November 2, 2009        Views: 189
This snippet returns the reverse of the given input from the beginning to the character at index.
Submitted: September 14, 2009        Views: 85
Sorts an array of integers
Submitted: August 19, 2009        Views: 125
This program finds all the prime integers less than or equal to a given number n.
Submitted: October 6, 2009        Views: 188
Finds the sum of all numbers from 1 to 1/n iteratively.