Popular problem

From Esolang

Jump to: navigation, search

Some problems, of varying degrees of complexity, are very popular targets for esoteric programmers. Programs solving these problems are usually the first, and often the only, programs to be implemented in a new esoteric programming language.

Some of the popular problems are:

  • Hello, world! - Print "Hello, world!".
  • 99 bottles of beer - Print the text of the "99 bottles of beer" song.
  • Quine - Output program's own source code.
  • Fibonacci sequence - Output the Fibonacci numbers (1,1,2,3,5,8,13...) using either recursion or iteration.
  • Prime numbers - Output the sequence of prime numbers (2,3,5,7,11,13,17...) using e.g. the Sieve of Eratosthenes (or just brute force.)
  • Cat program - Copy standard input to standard output.
  • Digital root calculator - Calculate and print out the digital root of given input.
  • Mandelbrot set - Output the Mandelbrot fractal, usually in ASCII pseudographics.
  • Equivalency simulation - Interpret a language with a known computational class, e.g. Brainfuck, to prove that the language is in the same class, e.g. Turing-complete.
  • Interpreter - Interpret Befunge or some other esoteric programming language not to demonstrate anything in particular, just for fun.
  • Bootstrap - Interpret or compile the language in which the program is written.
  • ROT13 encoder/decoder - Apply the ROT13 cipher to the input text.
  • Pi calculator - Caculate π to an arbitrary precision.

Other popular types of programs are:

  • Palindromes - Programs that read the same forwards and backwards.
  • Polyglots - Programs that run in multiple languages.
Personal tools