This website offers a web environment to code in while working through the challenges (unlike the Euler Projects) and includes a social aspect where the solutions of other coders is showcased.

Intro

The Journey Begins

Add

Write a function that returns the sum of two numbers.

Example

For param1 = 1 and param2 = 2, the output should be
add(param1, param2) = 3.

Input/Output

  • [execution time limit] 3 seconds (cs)
  • [input] integer param1 Guaranteed constraints:
    -1000 ≤ param1 ≤ 1000.
  • [input] integer param2 Guaranteed constraints:
    -1000 ≤ param2 ≤ 1000.
  • [output] integer The sum of the two inputs.
int add(int param1, int param2) {
    return param1 + param2;
}

centuryFromYear

checkPalindrome

Edge of the Ocean

Smooth Sailing

Exploring the Waters

Island of Knowledge

Rains of Reason

Through The Fog

Diving Deeper

Dark Wilderness

Eruption of Light

Rainbow of Clarity

Land of Logic

The Core

Databases