Skip to content

Sreeparvathy/CodeEval

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

CodeEval

Problems I have solved from www.CodeEval.com primarily in Java and Python.

You can also check out my solutions on the CodeEval website here!: http://www.codeeval.com/profile/edeng/

Moderate

Longest Lines - Finding the 'N' longest lines within a file [Java]

Mth to Last Element - Determine the Mth to last element of a list [Java]

Counting Primes - Count the number of primes between two integers [Java]

Remove Characters - Delete specific characters from a string [Java]

Trailing String - Determine if a string 'B' occurs at the end of string 'A' [Java]

First Non-Repeated Character - Find the first non repeated character in a string [Java] [Python]

Pangrams - Find the missing alphabets [Java]

Stack Implementation - Implement a stack interface [Java]

Easy

Prime Palindrome - Biggest prime palindrome < 1000 [Java]

Sum of Prime - Sum of first 1000 primes [Java]

Reverse Words - Reversing an input sequence of words [Java] [[Python]] (https://github.com/edeng/CodeEval/blob/master/Easy/ReverseWords.py)

Lowercase - Lowercase text [Java] [Python]

Sum of Digits - Sum of digits comprising a number [Java] [Python]

Multiplication Tables - Print out the grade school multiplication table upto 12*12 [Java]

Penultimate Word - Find the next-to-last word [Java]

Capitalize Words - Capitalize words in a sentence [Java] [Python]

Swap Case - Swap case in a string [Java]

Even Numbers - Determine if a number is even or not [Java] [[Python]] (https://github.com/edeng/CodeEval/blob/master/Easy/EvenNumbers.py)

Longest Word - Get the longest word in a sentence [Java] [Python]

Odd Numbers - Print the odd numbers from 1 to 99 [Java] [Python]

Rightmost Char - Print the position of the rightmost occurrence of a char [Java] [Python]

N Mod M - Determine the modulus (without the modulus operator) [Java] [Python]

Fizz Buzz - A simple game involving divisibility tests [Java] [Python]

Mixed Content - Separate words with digits [Java]

Multiply Lists - Mulitply elements in 2 lists [Java] [Python]

The Major Element - Find the major element in a sequence [Java]

Unique Elements - Extract unique list from a sorted list of numbers [Java]

Simple Sorting - Sort several numbers [Java]

Calculate Distance - Calculate a distance between two points [Java]

Sum of Integers from File - Print the sum of integers read from a file. [Java] [Python]

Fibonacci Series - Print out the nth fibonacci number [Java]

File Size - Print the file size in bytes. [Java] [Python]

Lowest Unique Number - Find the lowest unique number in a set [Java]

Word to Digit - Substitute words to digits [Java]

Armstrong Numbers - Determine if a number is an armstrong number [Java]

Multiples of a Number - Multiples of a number greater than another number [Java] [Python]

Compressed Sequence - Compress a sequence using a simple algorithm [Java]

Find a Writer - Find a famous writer in a string [Java]

Split The Number - Evaluate the number according to the pattern [Java]

Hidden Digits - Try to look behind the scenes [Java]

Bit Positions - Bits in position x,y are same or different [Java]

Hex to Decimal - Convert a hex number to it's decimal equivalent [Java]

Self Describing Numbers - Determine if a number is a self-describing number or not [Java]

Roman Numerals - Convert a cardinal number to a Roman numeral [Java]

Shortest Repetition - Find the shortest repetition in a string [Java]

Query Board - Set and get values from a matrix using tiny DSL [Java]

Releases

No releases published

Packages

No packages published

Languages

  • Java 88.3%
  • Python 11.7%