task_url
stringlengths
30
116
task_name
stringlengths
2
86
task_description
stringlengths
0
14.4k
language_url
stringlengths
2
53
language_name
stringlengths
1
52
code
stringlengths
0
61.9k
http://rosettacode.org/wiki/Factorial
Factorial
Definitions   The factorial of   0   (zero)   is defined as being   1   (unity).   The   Factorial Function   of a positive integer,   n,   is defined as the product of the sequence: n,   n-1,   n-2,   ...   1 Task Write a function to return the factorial of a number. Solutions can be iterat...
#Peloton
Peloton
<@ SAYFCTLIT>5</@>
http://rosettacode.org/wiki/Even_or_odd
Even or odd
Task Test whether an integer is even or odd. There is more than one way to solve this task: Use the even and odd predicates, if the language provides them. Check the least significant digit. With binary integers, i bitwise-and 1 equals 0 iff i is even, or equals 1 iff i is odd. Divide i by 2. The remainder equals...
#Factor
Factor
( scratchpad ) 20 even? . t ( scratchpad ) 35 even? . f ( scratchpad ) 20 odd? . f ( scratchpad ) 35 odd? . t
http://rosettacode.org/wiki/Even_or_odd
Even or odd
Task Test whether an integer is even or odd. There is more than one way to solve this task: Use the even and odd predicates, if the language provides them. Check the least significant digit. With binary integers, i bitwise-and 1 equals 0 iff i is even, or equals 1 iff i is odd. Divide i by 2. The remainder equals...
#Fish
Fish
<v"Please enter a number:"a >l0)?!vo v < v o< ^ >i:a=?v>i:a=?v$a*+^>"The number is even."ar>l0=?!^> > >2%0=?^"The number is odd."ar ^
http://rosettacode.org/wiki/Evaluate_binomial_coefficients
Evaluate binomial coefficients
This programming task, is to calculate ANY binomial coefficient. However, it has to be able to output   ( 5 3 ) {\displaystyle {\binom {5}{3}}} ,   which is   10. This formula is recommended: ( n k ) = n ! ( n − k ) ! k ! = n ( n − 1 ) ( n − 2 ) … ( n − k + 1 ) k ( k − 1...
#Phix
Phix
global function choose(integer n, k) atom res = 1 for i=1 to k do res = (res*(n-i+1))/i end for return res end function
http://rosettacode.org/wiki/Evaluate_binomial_coefficients
Evaluate binomial coefficients
This programming task, is to calculate ANY binomial coefficient. However, it has to be able to output   ( 5 3 ) {\displaystyle {\binom {5}{3}}} ,   which is   10. This formula is recommended: ( n k ) = n ! ( n − k ) ! k ! = n ( n − 1 ) ( n − 2 ) … ( n − k + 1 ) k ( k − 1...
#PHP
PHP
<?php $n=5; $k=3; function factorial($val){ for($f=2;$val-1>1;$f*=$val--); return $f; } $binomial_coefficient=factorial($n)/(factorial($k)*factorial($n-$k)); echo $binomial_coefficient; ?>
http://rosettacode.org/wiki/Emirp_primes
Emirp primes
An   emirp   (prime spelled backwards)   are primes that when reversed   (in their decimal representation)   are a different prime. (This rules out palindromic primes.) Task   show the first   twenty   emirps   show all emirps between   7,700   and   8,000   show the   10,000th   emirp In each list, the numbe...
#Groovy
Groovy
class Emirp {   //trivial prime algorithm, sub in whatever algorithm you want static boolean isPrime(long x) { if (x < 2) return false if (x == 2) return true if ((x & 1) == 0) return false   for (long i = 3; i <= Math.sqrt(x); i += 2) { if (x % i == 0) return false ...
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Ring
Ring
  apple = 0 banana = 1 cherry = 2 see "apple : " + apple + nl see "banana : " + banana + nl see "cherry : " + cherry + nl  
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Ruby
Ruby
module Fruits APPLE = 0 BANANA = 1 CHERRY = 2 end   # It is possible to use a symbol if the value is unrelated.   FRUITS = [:apple, :banana, :cherry] val = :banana FRUITS.include?(val) #=> true
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Rust
Rust
enum Fruits { Apple, Banana, Cherry }   enum FruitsWithNumbers { Strawberry = 0, Pear = 27, }   fn main() { // Access to numerical value by conversion println!("{}", FruitsWithNumbers::Pear as u8); }
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#Dart
Dart
main() { var empty = '';   if (empty.isEmpty) { print('it is empty'); }   if (empty.isNotEmpty) { print('it is not empty'); } }
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#Delphi
Delphi
program EmptyString;   {$APPTYPE CONSOLE}   uses SysUtils;   function StringIsEmpty(const aString: string): Boolean; begin Result := aString = ''; end;   var s: string; begin s := ''; Writeln(StringIsEmpty(s)); // True   s := 'abc'; Writeln(StringIsEmpty(s)); // False end.
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#PicoLisp
PicoLisp
(prinl "myDir is" (and (dir "myDir") " not") " empty")
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#PowerShell
PowerShell
  $path = "C:\Users" if((Dir $path).Count -eq 0) { "$path is empty" } else { "$path is not empty" }  
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Prolog
Prolog
non_empty_file('.'). non_empty_file('..').   empty_dir(Dir) :- directory_files(Dir, Files), maplist(non_empty_file, Files).
http://rosettacode.org/wiki/Empty_program
Empty program
Task Create the simplest possible program that is still considered "correct."
#Clojure
Clojure
start_up = proc () end start_up
http://rosettacode.org/wiki/Empty_program
Empty program
Task Create the simplest possible program that is still considered "correct."
#CLU
CLU
start_up = proc () end start_up
http://rosettacode.org/wiki/Entropy
Entropy
Task Calculate the Shannon entropy   H   of a given input string. Given the discrete random variable X {\displaystyle X} that is a string of N {\displaystyle N} "symbols" (total characters) consisting of n {\displaystyle n} different characters (n=2 for binary), the Shannon entropy of X in bit...
#friendly_interactive_shell
friendly interactive shell
function entropy for arg in $argv set name count_$arg if not count $$name > /dev/null set $name 0 set values $values $arg end set $name (math $$name + 1) end set entropy 0 for value in $values set name count_$value set entropy (echo...
http://rosettacode.org/wiki/Entropy
Entropy
Task Calculate the Shannon entropy   H   of a given input string. Given the discrete random variable X {\displaystyle X} that is a string of N {\displaystyle N} "symbols" (total characters) consisting of n {\displaystyle n} different characters (n=2 for binary), the Shannon entropy of X in bit...
#F.C5.8Drmul.C3.A6
Fōrmulæ
package main   import ( "fmt" "math" "strings" )   func main(){ fmt.Println(H("1223334444")) }   func H(data string) (entropy float64) { if data == "" { return 0 } for i := 0; i < 256; i++ { px := float64(strings.Count(data, string(byte(i)))) / float64(len(data)) if p...
http://rosettacode.org/wiki/Ethiopian_multiplication
Ethiopian multiplication
Ethiopian multiplication is a method of multiplying integers using only addition, doubling, and halving. Method: Take two numbers to be multiplied and write them down at the top of two columns. In the left-hand column repeatedly halve the last number, discarding any remainders, and write the result below the last ...
#Elixir
Elixir
defmodule Ethiopian do def halve(n), do: div(n, 2)   def double(n), do: n * 2   def even(n), do: rem(n, 2) == 0   def multiply(lhs, rhs) when is_integer(lhs) and lhs > 0 and is_integer(rhs) and rhs > 0 do multiply(lhs, rhs, 0) end   def multiply(1, rhs, acc), do: rhs + acc def multiply(lhs, rhs, acc) ...
http://rosettacode.org/wiki/Equilibrium_index
Equilibrium index
An equilibrium index of a sequence is an index into the sequence such that the sum of elements at lower indices is equal to the sum of elements at higher indices. For example, in a sequence   A {\displaystyle A} :   A 0 = − 7 {\displaystyle A_{0}=-7}   A 1 = 1 {\displaystyle A_{1}=1} ...
#Phix
Phix
with javascript_semantics function equilibrium(sequence s) atom lower_sum = 0, higher_sum = sum(s) sequence res = {} for i=1 to length(s) do higher_sum -= s[i] if lower_sum=higher_sum then res &= i end if lower_sum += s[i] end for return res end f...
http://rosettacode.org/wiki/Equilibrium_index
Equilibrium index
An equilibrium index of a sequence is an index into the sequence such that the sum of elements at lower indices is equal to the sum of elements at higher indices. For example, in a sequence   A {\displaystyle A} :   A 0 = − 7 {\displaystyle A_{0}=-7}   A 1 = 1 {\displaystyle A_{1}=1} ...
#PHP
PHP
<?php $arr = array(-7, 1, 5, 2, -4, 3, 0);   function getEquilibriums($arr) { $right = array_sum($arr); $left = 0; $equilibriums = array(); foreach($arr as $key => $value){ $right -= $value; if($left == $right) $equilibriums[] = $key; $left += $value; } return $equilibriu...
http://rosettacode.org/wiki/Euler%27s_sum_of_powers_conjecture
Euler's sum of powers conjecture
There is a conjecture in mathematics that held for over two hundred years before it was disproved by the finding of a counterexample in 1966 by Lander and Parkin. Euler's (disproved) sum of powers   conjecture At least k positive kth powers are required to sum to a kth power, except for the trivial case...
#Nim
Nim
  # Brute force approach   import times   # assumes an array of non-decreasing positive integers proc binarySearch(a : openArray[int], target : int) : int = var left, right, mid : int left = 0 right = len(a) - 1 while true : if left > right : return 0 # no match found mid = (left + right) div 2 if...
http://rosettacode.org/wiki/Factorial
Factorial
Definitions   The factorial of   0   (zero)   is defined as being   1   (unity).   The   Factorial Function   of a positive integer,   n,   is defined as the product of the sequence: n,   n-1,   n-2,   ...   1 Task Write a function to return the factorial of a number. Solutions can be iterat...
#Perl
Perl
sub factorial { my $n = shift; my $result = 1; for (my $i = 1; $i <= $n; ++$i) { $result *= $i; }; $result; }   # using a .. range sub factorial { my $r = 1; $r *= $_ for 1..shift; $r; }
http://rosettacode.org/wiki/Even_or_odd
Even or odd
Task Test whether an integer is even or odd. There is more than one way to solve this task: Use the even and odd predicates, if the language provides them. Check the least significant digit. With binary integers, i bitwise-and 1 equals 0 iff i is even, or equals 1 iff i is odd. Divide i by 2. The remainder equals...
#Forth
Forth
: odd? ( n -- ? ) 1 and ;
http://rosettacode.org/wiki/Even_or_odd
Even or odd
Task Test whether an integer is even or odd. There is more than one way to solve this task: Use the even and odd predicates, if the language provides them. Check the least significant digit. With binary integers, i bitwise-and 1 equals 0 iff i is even, or equals 1 iff i is odd. Divide i by 2. The remainder equals...
#Fortran
Fortran
  !-*- mode: compilation; default-directory: "/tmp/" -*- !Compilation started at Tue May 21 20:22:56 ! !a=./f && make $a && OMP_NUM_THREADS=2 $a < unixdict.txt !gfortran -std=f2008 -Wall -ffree-form -fall-intrinsics f.f08 -o f ! n odd even !-6 F T !-5 T F !-4 F T !-3 T F !-2 F T !-1...
http://rosettacode.org/wiki/Evaluate_binomial_coefficients
Evaluate binomial coefficients
This programming task, is to calculate ANY binomial coefficient. However, it has to be able to output   ( 5 3 ) {\displaystyle {\binom {5}{3}}} ,   which is   10. This formula is recommended: ( n k ) = n ! ( n − k ) ! k ! = n ( n − 1 ) ( n − 2 ) … ( n − k + 1 ) k ( k − 1...
#Picat
Picat
binomial_it(N,K) = Res => if K < 0 ; K > N then R = 0 else R = 1, foreach(I in 0..K-1) R := R * (N-I) // (I+1) end end, Res = R.
http://rosettacode.org/wiki/Evaluate_binomial_coefficients
Evaluate binomial coefficients
This programming task, is to calculate ANY binomial coefficient. However, it has to be able to output   ( 5 3 ) {\displaystyle {\binom {5}{3}}} ,   which is   10. This formula is recommended: ( n k ) = n ! ( n − k ) ! k ! = n ( n − 1 ) ( n − 2 ) … ( n − k + 1 ) k ( k − 1...
#PicoLisp
PicoLisp
(de binomial (N K) (let f '((N) (if (=0 N) 1 (apply * (range 1 N))) ) (/ (f N) (* (f (- N K)) (f K)) ) ) )
http://rosettacode.org/wiki/Emirp_primes
Emirp primes
An   emirp   (prime spelled backwards)   are primes that when reversed   (in their decimal representation)   are a different prime. (This rules out palindromic primes.) Task   show the first   twenty   emirps   show all emirps between   7,700   and   8,000   show the   10,000th   emirp In each list, the numbe...
#Haskell
Haskell
#!/usr/bin/env runghc   import Data.HashSet (HashSet, fromList, member) import Data.List import Data.Numbers.Primes import System.Environment import System.Exit import System.IO   -- optimization mentioned on the talk page startDigOK :: Integer -> Bool startDigOK n = head (show n) `elem` "1379"   -- infinite list of pr...
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Scala
Scala
sealed abstract class Fruit case object Apple extends Fruit case object Banana extends Fruit case object Cherry extends Fruit  
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Scheme
Scheme
(define apple 0) (define banana 1) (define cherry 2)   (define (fruit? atom) (or (equal? 'apple atom) (equal? 'banana atom) (equal? 'cherry atom)))
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Seed7
Seed7
const type: fruits is new enum apple, banana, cherry end enum;
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#DWScript
DWScript
var s : String;   s := ''; // assign an empty string (can also use "")   if s = '' then PrintLn('empty');   s := 'hello';   if s <> '' then PrintLn('not empty');
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#Dyalect
Dyalect
var str = ""
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#PureBasic
PureBasic
Procedure isDirEmpty(path$) If Right(path$, 1) <> "\": path$ + "\": EndIf Protected dirID = ExamineDirectory(#PB_Any, path$, "*.*") Protected result   If dirID result = 1 While NextDirectoryEntry(dirID) If DirectoryEntryType(dirID) = #PB_DirectoryEntry_File Or (DirectoryEntryName(dirID) <> "." And...
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Python
Python
import os; if os.listdir(raw_input("directory")): print "not empty" else: print "empty"  
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#R
R
  is_dir_empty <- function(path){ if(length(list.files(path)) == 0) print("This folder is empty") }   is_dir_empty(path)  
http://rosettacode.org/wiki/Empty_program
Empty program
Task Create the simplest possible program that is still considered "correct."
#COBOL
COBOL
 
http://rosettacode.org/wiki/Empty_program
Empty program
Task Create the simplest possible program that is still considered "correct."
#CoffeeScript
CoffeeScript
 
http://rosettacode.org/wiki/Entropy
Entropy
Task Calculate the Shannon entropy   H   of a given input string. Given the discrete random variable X {\displaystyle X} that is a string of N {\displaystyle N} "symbols" (total characters) consisting of n {\displaystyle n} different characters (n=2 for binary), the Shannon entropy of X in bit...
#Go
Go
package main   import ( "fmt" "math" "strings" )   func main(){ fmt.Println(H("1223334444")) }   func H(data string) (entropy float64) { if data == "" { return 0 } for i := 0; i < 256; i++ { px := float64(strings.Count(data, string(byte(i)))) / float64(len(data)) if p...
http://rosettacode.org/wiki/Ethiopian_multiplication
Ethiopian multiplication
Ethiopian multiplication is a method of multiplying integers using only addition, doubling, and halving. Method: Take two numbers to be multiplied and write them down at the top of two columns. In the left-hand column repeatedly halve the last number, discarding any remainders, and write the result below the last ...
#Emacs_Lisp
Emacs Lisp
(defun even-p (n) (= (mod n 2) 0)) (defun halve (n) (floor n 2)) (defun double (n) (* n 2)) (defun ethiopian-multiplication (l r) (let ((sum 0)) (while (>= l 1) (unless (even-p l) (setq sum (+ r sum))) (setq l (halve l)) (setq r (double r))) sum))
http://rosettacode.org/wiki/Equilibrium_index
Equilibrium index
An equilibrium index of a sequence is an index into the sequence such that the sum of elements at lower indices is equal to the sum of elements at higher indices. For example, in a sequence   A {\displaystyle A} :   A 0 = − 7 {\displaystyle A_{0}=-7}   A 1 = 1 {\displaystyle A_{1}=1} ...
#Picat
Picat
equilibrium_index1(A, Ix) => append(Front, [_|Back], A), sum(Front) = sum(Back), Ix = length(Front)+1. % give 1 based index
http://rosettacode.org/wiki/Equilibrium_index
Equilibrium index
An equilibrium index of a sequence is an index into the sequence such that the sum of elements at lower indices is equal to the sum of elements at higher indices. For example, in a sequence   A {\displaystyle A} :   A 0 = − 7 {\displaystyle A_{0}=-7}   A 1 = 1 {\displaystyle A_{1}=1} ...
#PicoLisp
PicoLisp
(de equilibria (Lst) (make (let Sum 0 (for ((I . L) Lst L (cdr L)) (and (= Sum (sum prog (cdr L))) (link I)) (inc 'Sum (car L)) ) ) ) )
http://rosettacode.org/wiki/Euler%27s_sum_of_powers_conjecture
Euler's sum of powers conjecture
There is a conjecture in mathematics that held for over two hundred years before it was disproved by the finding of a counterexample in 1966 by Lander and Parkin. Euler's (disproved) sum of powers   conjecture At least k positive kth powers are required to sum to a kth power, except for the trivial case...
#Oforth
Oforth
: eulerSum | i j k l ip jp kp | 250 loop: i [ i 5 pow ->ip i 1 + 250 for: j [ j 5 pow ip + ->jp j 1 + 250 for: k [ k 5 pow jp + ->kp k 1 + 250 for: l [ kp l 5 pow + 0.2 powf dup asInteger == ifTrue: [ [ i, j, k, l ] println ] ] ...
http://rosettacode.org/wiki/Factorial
Factorial
Definitions   The factorial of   0   (zero)   is defined as being   1   (unity).   The   Factorial Function   of a positive integer,   n,   is defined as the product of the sequence: n,   n-1,   n-2,   ...   1 Task Write a function to return the factorial of a number. Solutions can be iterat...
#Peylang
Peylang
  -- calculate factorial   chiz a = 5; chiz n = 1;   ta a >= 2 { n *= a; a -= 1; }   chaap n;  
http://rosettacode.org/wiki/Even_or_odd
Even or odd
Task Test whether an integer is even or odd. There is more than one way to solve this task: Use the even and odd predicates, if the language provides them. Check the least significant digit. With binary integers, i bitwise-and 1 equals 0 iff i is even, or equals 1 iff i is odd. Divide i by 2. The remainder equals...
#FreeBASIC
FreeBASIC
' FB 1.05.0 Win64   Dim n As Integer   Do Print "Enter an integer or 0 to finish : "; Input "", n If n = 0 Then Exit Do ElseIf n Mod 2 = 0 Then Print "Your number is even" Print Else Print "Your number is odd" Print End if Loop   End
http://rosettacode.org/wiki/Evaluate_binomial_coefficients
Evaluate binomial coefficients
This programming task, is to calculate ANY binomial coefficient. However, it has to be able to output   ( 5 3 ) {\displaystyle {\binom {5}{3}}} ,   which is   10. This formula is recommended: ( n k ) = n ! ( n − k ) ! k ! = n ( n − 1 ) ( n − 2 ) … ( n − k + 1 ) k ( k − 1...
#PL.2FI
PL/I
  binomial_coefficients: procedure options (main); declare (n, k) fixed;   get (n, k); put (coefficient(n, k));   coefficient: procedure (n, k) returns (fixed decimal (15)); declare (n, k) fixed; return (fact(n)/ (fact(n-k) * fact(k)) ); end coefficient;   fact: procedure (n) returns (fixed decimal...
http://rosettacode.org/wiki/Evaluate_binomial_coefficients
Evaluate binomial coefficients
This programming task, is to calculate ANY binomial coefficient. However, it has to be able to output   ( 5 3 ) {\displaystyle {\binom {5}{3}}} ,   which is   10. This formula is recommended: ( n k ) = n ! ( n − k ) ! k ! = n ( n − 1 ) ( n − 2 ) … ( n − k + 1 ) k ( k − 1...
#PowerShell
PowerShell
  function choose($n,$k) { if($k -le $n -and 0 -le $k) { $numerator = $denominator = 1 0..($k-1) | foreach{ $numerator *= ($n-$_) $denominator *= ($_ + 1) } $numerator/$denominator } else { "$k is greater than $n or lower than 0" } } choose 5 3...
http://rosettacode.org/wiki/Emirp_primes
Emirp primes
An   emirp   (prime spelled backwards)   are primes that when reversed   (in their decimal representation)   are a different prime. (This rules out palindromic primes.) Task   show the first   twenty   emirps   show all emirps between   7,700   and   8,000   show the   10,000th   emirp In each list, the numbe...
#J
J
emirp =: (] #~ ~: *. 1 p: ]) |.&.:":"0 NB. Input is array of primes
http://rosettacode.org/wiki/Emirp_primes
Emirp primes
An   emirp   (prime spelled backwards)   are primes that when reversed   (in their decimal representation)   are a different prime. (This rules out palindromic primes.) Task   show the first   twenty   emirps   show all emirps between   7,700   and   8,000   show the   10,000th   emirp In each list, the numbe...
#Java
Java
public class Emirp{   //trivial prime algorithm, sub in whatever algorithm you want public static boolean isPrime(long x){ if(x < 2) return false; if(x == 2) return true; if((x & 1) == 0) return false;   for(long i = 3; i <= Math.sqrt(x);i+=2){ if(x % i == 0) return false; }   return true; }   public...
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Shen
Shen
(tc +)   (datatype fruit   if (element? Fruit [apple banana cherry]) _____________ Fruit : fruit;)
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Sidef
Sidef
enum {Apple, Banana, Cherry}; # numbered 0 through 2
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Slate
Slate
define: #Fruit &parents: {Cloneable}. Fruit traits define: #Apple -> Fruit clone. Fruit traits define: #Banana -> Fruit clone. Fruit traits define: #Cherry -> Fruit clone.
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Standard_ML
Standard ML
datatype fruit = Apple | Banana | Cherry
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#D.C3.A9j.C3.A0_Vu
Déjà Vu
local :e ""   if not e:  !print "an empty string"   if e:  !print "not an empty string"
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#EasyLang
EasyLang
a$ = "" if a$ = "" print "empty" . if a$ <> "" print "no empty" .
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Racket
Racket
  #lang racket (empty? (directory-list "some-directory"))  
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Raku
Raku
sub dir-is-empty ($d) { not dir $d }
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#REXX
REXX
/*REXX pgm checks to see if a directory is empty; if not, lists entries.*/ parse arg xdir; if xdir='' then xdir='\someDir' /*Any DIR? Use default.*/ @.=0 /*default in case ADDRESS fails. */ trace off /*suppress REXX err msg for fails*/ address system 'DIR'...
http://rosettacode.org/wiki/Empty_program
Empty program
Task Create the simplest possible program that is still considered "correct."
#Common_Lisp
Common Lisp
()
http://rosettacode.org/wiki/Empty_program
Empty program
Task Create the simplest possible program that is still considered "correct."
#Component_Pascal
Component Pascal
  MODULE Main; END Main.  
http://rosettacode.org/wiki/Entropy
Entropy
Task Calculate the Shannon entropy   H   of a given input string. Given the discrete random variable X {\displaystyle X} that is a string of N {\displaystyle N} "symbols" (total characters) consisting of n {\displaystyle n} different characters (n=2 for binary), the Shannon entropy of X in bit...
#Groovy
Groovy
String.metaClass.getShannonEntrophy = { -delegate.inject([:]) { map, v -> map[v] = (map[v] ?: 0) + 1; map }.values().inject(0.0) { sum, v -> def p = (BigDecimal)v / delegate.size() sum + p * Math.log(p) / Math.log(2) } }
http://rosettacode.org/wiki/Ethiopian_multiplication
Ethiopian multiplication
Ethiopian multiplication is a method of multiplying integers using only addition, doubling, and halving. Method: Take two numbers to be multiplied and write them down at the top of two columns. In the left-hand column repeatedly halve the last number, discarding any remainders, and write the result below the last ...
#Erlang
Erlang
-module(ethopian). -export([multiply/2]).   halve(N) -> N div 2.   double(N) -> N * 2.   even(N) -> (N rem 2) == 0.   multiply(LHS,RHS) when is_integer(Lhs) and Lhs > 0 and is_integer(Rhs) and Rhs > 0 -> multiply(LHS,RHS,0).   multiply(1,RHS,Acc) -> RHS+Acc; multiply(LHS,RHS,Acc) -> case even...
http://rosettacode.org/wiki/Equilibrium_index
Equilibrium index
An equilibrium index of a sequence is an index into the sequence such that the sum of elements at lower indices is equal to the sum of elements at higher indices. For example, in a sequence   A {\displaystyle A} :   A 0 = − 7 {\displaystyle A_{0}=-7}   A 1 = 1 {\displaystyle A_{1}=1} ...
#PowerShell
PowerShell
  function Get-EquilibriumIndex ( $Sequence ) { $Indexes = 0..($Sequence.Count - 1) $EqulibriumIndex = @()   ForEach ( $TestIndex in $Indexes ) { $Left = 0 $Right = 0 ForEach ( $Index in $Indexes ) { If ( $Index -lt $TestIndex ) { $Left += $Se...
http://rosettacode.org/wiki/Equilibrium_index
Equilibrium index
An equilibrium index of a sequence is an index into the sequence such that the sum of elements at lower indices is equal to the sum of elements at higher indices. For example, in a sequence   A {\displaystyle A} :   A 0 = − 7 {\displaystyle A_{0}=-7}   A 1 = 1 {\displaystyle A_{1}=1} ...
#Prolog
Prolog
equilibrium_index(List, Index) :- append(Front, [_|Back], List), sumlist(Front, Sum), sumlist(Back, Sum), length(Front, Len), Index is Len.
http://rosettacode.org/wiki/Euler%27s_sum_of_powers_conjecture
Euler's sum of powers conjecture
There is a conjecture in mathematics that held for over two hundred years before it was disproved by the finding of a counterexample in 1966 by Lander and Parkin. Euler's (disproved) sum of powers   conjecture At least k positive kth powers are required to sum to a kth power, except for the trivial case...
#PARI.2FGP
PARI/GP
forvec(v=vector(4,i,[0,250]), if(ispower(v[1]^5+v[2]^5+v[3]^5+v[4]^5,5,&n), print(n" "v)), 2)
http://rosettacode.org/wiki/Factorial
Factorial
Definitions   The factorial of   0   (zero)   is defined as being   1   (unity).   The   Factorial Function   of a positive integer,   n,   is defined as the product of the sequence: n,   n-1,   n-2,   ...   1 Task Write a function to return the factorial of a number. Solutions can be iterat...
#Phix
Phix
global function factorial(integer n) atom res = 1 while n>1 do res *= n n -= 1 end while return res end function
http://rosettacode.org/wiki/Even_or_odd
Even or odd
Task Test whether an integer is even or odd. There is more than one way to solve this task: Use the even and odd predicates, if the language provides them. Check the least significant digit. With binary integers, i bitwise-and 1 equals 0 iff i is even, or equals 1 iff i is odd. Divide i by 2. The remainder equals...
#Frink
Frink
isEven[x is isInteger] := getBit[x,0] == 0 isOdd[x is isInteger] := getBit[x,0] == 1
http://rosettacode.org/wiki/Even_or_odd
Even or odd
Task Test whether an integer is even or odd. There is more than one way to solve this task: Use the even and odd predicates, if the language provides them. Check the least significant digit. With binary integers, i bitwise-and 1 equals 0 iff i is even, or equals 1 iff i is odd. Divide i by 2. The remainder equals...
#Futhark
Futhark
  fun main(x: int): bool = (x & 1) == 0  
http://rosettacode.org/wiki/Evaluate_binomial_coefficients
Evaluate binomial coefficients
This programming task, is to calculate ANY binomial coefficient. However, it has to be able to output   ( 5 3 ) {\displaystyle {\binom {5}{3}}} ,   which is   10. This formula is recommended: ( n k ) = n ! ( n − k ) ! k ! = n ( n − 1 ) ( n − 2 ) … ( n − k + 1 ) k ( k − 1...
#PureBasic
PureBasic
Procedure Factor(n) Protected Result=1 While n>0 Result*n n-1 Wend ProcedureReturn Result EndProcedure   Macro C(n,k) (Factor(n)/(Factor(k)*factor(n-k))) EndMacro   If OpenConsole() Print("Enter value n: "): n=Val(Input()) Print("Enter value k: "): k=Val(Input()) PrintN("C(n,k)= "+str(C(n,k)))  ...
http://rosettacode.org/wiki/Emirp_primes
Emirp primes
An   emirp   (prime spelled backwards)   are primes that when reversed   (in their decimal representation)   are a different prime. (This rules out palindromic primes.) Task   show the first   twenty   emirps   show all emirps between   7,700   and   8,000   show the   10,000th   emirp In each list, the numbe...
#JavaScript
JavaScript
function isPrime(n) { if (!(n % 2) || !(n % 3)) return 0;   var p = 1; while (p * p < n) { if (n % (p += 4) == 0 || n % (p += 2) == 0) { return false } } return true }   function isEmirp(n) { var s = n.toString(); var r = s.split("").reverse().join(""); return...
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Swift
Swift
enum Fruit { case Apple case Banana case Cherry } // or enum Fruit { case Apple, Banana, Cherry }   enum Season : Int { case Winter = 1 case Spring = 2 case Summer = 3 case Autumn = 4 }
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Tcl
Tcl
proc enumerate {name values} { interp alias {} $name: {} lsearch $values interp alias {} $name@ {} lindex $values }
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Toka
Toka
needs enum 0 enum| apple banana carrot | 10 enum| foo bar baz |
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#Elena
Elena
import extensions;   public program() { auto s := emptyString;   if (s.isEmpty()) { console.printLine("'", s, "' is empty") };   if (s.isNonempty()) { console.printLine("'", s, "' is not empty") } }
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#Elixir
Elixir
  empty_string = "" not_empty_string = "a"   empty_string == "" # => true String.length(empty_string) == 0 # => true byte_size(empty_string) == 0 # => true   not_empty_string == "" # => false String.length(not_empty_string) == 0 # => false byte_size(not_empty_string) == 0 # => false  
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Ring
Ring
  myList = dir("C:\Ring\bin") if len(myList) > 0 see "C:\Ring\bin is not empty" + nl else see "C:\Ring\bin is empty" + nl ok  
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Ruby
Ruby
Dir.entries("testdir").empty?
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Run_BASIC
Run BASIC
files #f, DefaultDir$ + "\*.*" ' open some directory.   print "hasanswer: ";#f HASANSWER() ' if it has an answer it is not MT print "rowcount: ";#f ROWCOUNT() ' if not MT, how many files?
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Rust
Rust
use std::fs::read_dir; use std::error::Error;   fn main() { for path in std::env::args().skip(1) { // iterate over the arguments, skipping the first (which is the executable) match read_dir(path.as_str()) { // try to read the directory specified Ok(contents) => { let len = conten...
http://rosettacode.org/wiki/Empty_program
Empty program
Task Create the simplest possible program that is still considered "correct."
#Computer.2Fzero_Assembly
Computer/zero Assembly
STP
http://rosettacode.org/wiki/Empty_program
Empty program
Task Create the simplest possible program that is still considered "correct."
#Crystal
Crystal
 
http://rosettacode.org/wiki/Empty_program
Empty program
Task Create the simplest possible program that is still considered "correct."
#D
D
void main() {}
http://rosettacode.org/wiki/Entropy
Entropy
Task Calculate the Shannon entropy   H   of a given input string. Given the discrete random variable X {\displaystyle X} that is a string of N {\displaystyle N} "symbols" (total characters) consisting of n {\displaystyle n} different characters (n=2 for binary), the Shannon entropy of X in bit...
#Haskell
Haskell
import Data.List   main = print $ entropy "1223334444"   entropy :: (Ord a, Floating c) => [a] -> c entropy = sum . map lg . fq . map genericLength . group . sort where lg c = -c * logBase 2 c fq c = let sc = sum c in map (/ sc) c
http://rosettacode.org/wiki/Entropy
Entropy
Task Calculate the Shannon entropy   H   of a given input string. Given the discrete random variable X {\displaystyle X} that is a string of N {\displaystyle N} "symbols" (total characters) consisting of n {\displaystyle n} different characters (n=2 for binary), the Shannon entropy of X in bit...
#Icon_and_Unicon
Icon and Unicon
procedure main(a) s := !a | "1223334444" write(H(s)) end   procedure H(s) P := table(0.0) every P[!s] +:= 1.0/*s every (h := 0.0) -:= P[c := key(P)] * log(P[c],2) return h end
http://rosettacode.org/wiki/Ethiopian_multiplication
Ethiopian multiplication
Ethiopian multiplication is a method of multiplying integers using only addition, doubling, and halving. Method: Take two numbers to be multiplied and write them down at the top of two columns. In the left-hand column repeatedly halve the last number, discarding any remainders, and write the result below the last ...
#ERRE
ERRE
PROGRAM ETHIOPIAN_MULT   FUNCTION EVEN(A) EVEN=(A+1) MOD 2 END FUNCTION   FUNCTION HALF(A) HALF=INT(A/2) END FUNCTION   FUNCTION DOUBLE(A) DOUBLE=2*A END FUNCTION   BEGIN X=17 Y=34 TOT=0 WHILE X>=1 DO PRINT(X,) IF EVEN(X)=0 THEN TOT=TOT+Y PRINT(Y) ELSE PRINT END IF X=HALF(X) Y=DOUBLE(Y) ...
http://rosettacode.org/wiki/Equilibrium_index
Equilibrium index
An equilibrium index of a sequence is an index into the sequence such that the sum of elements at lower indices is equal to the sum of elements at higher indices. For example, in a sequence   A {\displaystyle A} :   A 0 = − 7 {\displaystyle A_{0}=-7}   A 1 = 1 {\displaystyle A_{1}=1} ...
#PureBasic
PureBasic
If OpenConsole() Define i, c=CountProgramParameters()-1 For i=0 To c Define j, LSum=0, RSum=0 For j=0 To c If j<i LSum+Val(ProgramParameter(j)) ElseIf j>i RSum+Val(ProgramParameter(j)) EndIf Next j If LSum=RSum: PrintN(Str(i)): EndIf Next i EndIf
http://rosettacode.org/wiki/Equilibrium_index
Equilibrium index
An equilibrium index of a sequence is an index into the sequence such that the sum of elements at lower indices is equal to the sum of elements at higher indices. For example, in a sequence   A {\displaystyle A} :   A 0 = − 7 {\displaystyle A_{0}=-7}   A 1 = 1 {\displaystyle A_{1}=1} ...
#Python
Python
def eqindex2Pass(data): "Two pass" suml, sumr, ddelayed = 0, sum(data), 0 for i, d in enumerate(data): suml += ddelayed sumr -= d ddelayed = d if suml == sumr: yield i
http://rosettacode.org/wiki/Euler%27s_sum_of_powers_conjecture
Euler's sum of powers conjecture
There is a conjecture in mathematics that held for over two hundred years before it was disproved by the finding of a counterexample in 1966 by Lander and Parkin. Euler's (disproved) sum of powers   conjecture At least k positive kth powers are required to sum to a kth power, except for the trivial case...
#Pascal
Pascal
program Pot5Test; {$IFDEF FPC} {$MODE DELPHI}{$ELSE]{$APPTYPE CONSOLE}{$ENDIF} type tTest = double;//UInt64;{ On linux 32Bit double is faster than Uint64 } var Pot5 : array[0..255] of tTest; res,tmpSum : tTest; x0,x1,x2,x3, y : NativeUint;//= Uint32 or 64 depending on OS xx-Bit i : byte; BEGIN For i := 1 ...
http://rosettacode.org/wiki/Factorial
Factorial
Definitions   The factorial of   0   (zero)   is defined as being   1   (unity).   The   Factorial Function   of a positive integer,   n,   is defined as the product of the sequence: n,   n-1,   n-2,   ...   1 Task Write a function to return the factorial of a number. Solutions can be iterat...
#Phixmonti
Phixmonti
/# recursive #/ def factorial dup 1 > if dup 1 - factorial * else drop 1 endif enddef   /# iterative #/ def factorial2 1 swap for * endfor enddef   0 22 2 tolist for "Factorial(" print dup print ") = " print factorial2 print nl endfor
http://rosettacode.org/wiki/Even_or_odd
Even or odd
Task Test whether an integer is even or odd. There is more than one way to solve this task: Use the even and odd predicates, if the language provides them. Check the least significant digit. With binary integers, i bitwise-and 1 equals 0 iff i is even, or equals 1 iff i is odd. Divide i by 2. The remainder equals...
#F.C5.8Drmul.C3.A6
Fōrmulæ
Public Sub Form_Open() Dim sAnswer, sMessage As String   sAnswer = InputBox("Input an integer", "Odd or even")   If IsInteger(sAnswer) Then If Odd(Val(sAnswer)) Then sMessage = "' is an odd number" If Even(Val(sAnswer)) Then sMessage = "' is an even number" Else sMessage = "' does not compute!!" Endif   Print "'"...
http://rosettacode.org/wiki/Evaluate_binomial_coefficients
Evaluate binomial coefficients
This programming task, is to calculate ANY binomial coefficient. However, it has to be able to output   ( 5 3 ) {\displaystyle {\binom {5}{3}}} ,   which is   10. This formula is recommended: ( n k ) = n ! ( n − k ) ! k ! = n ( n − 1 ) ( n − 2 ) … ( n − k + 1 ) k ( k − 1...
#Python
Python
def binomialCoeff(n, k): result = 1 for i in range(1, k+1): result = result * (n-i+1) / i return result   if __name__ == "__main__": print(binomialCoeff(5, 3))
http://rosettacode.org/wiki/Evaluate_binomial_coefficients
Evaluate binomial coefficients
This programming task, is to calculate ANY binomial coefficient. However, it has to be able to output   ( 5 3 ) {\displaystyle {\binom {5}{3}}} ,   which is   10. This formula is recommended: ( n k ) = n ! ( n − k ) ! k ! = n ( n − 1 ) ( n − 2 ) … ( n − k + 1 ) k ( k − 1...
#Quackery
Quackery
[ tuck - over 1 swap times [ over i + 1+ * ] nip swap times [ i 1+ / ] ] is binomial ( n n --> )   5 3 binomial echo
http://rosettacode.org/wiki/Emirp_primes
Emirp primes
An   emirp   (prime spelled backwards)   are primes that when reversed   (in their decimal representation)   are a different prime. (This rules out palindromic primes.) Task   show the first   twenty   emirps   show all emirps between   7,700   and   8,000   show the   10,000th   emirp In each list, the numbe...
#jq
jq
def is_prime: if . == 2 then true else 2 < . and . % 2 == 1 and (. as $in | (($in + 1) | sqrt) as $m | [false, 3] | until( .[0] or .[1] > $m; [$in % .[1] == 0, .[1] + 2]) | .[0] | not) end ;   def relatively_prime: .[0] as $n | .[1] as $primes | ($n | sqrt) as $s |...
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#VBA
VBA
  'this enumerates from 0 Enum fruits apple banana cherry End Enum   'here we use our own enumeration Enum fruits2 pear = 5 mango = 10 kiwi = 20 pineapple = 20 End Enum     Sub test() Dim f As fruits f = apple Debug.Print "apple equals "; f Debug.Print "kiwi equals "; kiwi Debug.Print "cherry plus...
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Visual_Basic_.NET
Visual Basic .NET
' Is this valid?! Enum fruits apple banana cherry End Enum   ' This is correct Enum fruits apple = 0 banana = 1 cherry = 2 End Enum
http://rosettacode.org/wiki/Enumerations
Enumerations
Task Create an enumeration of constants with and without explicit values.
#Wren
Wren
var APPLE = 1 var ORANGE = 2 var PEAR = 3   var CHERRY = 4 var BANANA = CHERRY + 1 var GRAPE = BANANA + 1   System.print([APPLE, ORANGE, PEAR, CHERRY, BANANA, GRAPE])
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#Emacs_Lisp
Emacs Lisp
(setq str "") ;; empty string literal   (if (= 0 (length str)) (message "string is empty")) (if (/= 0 (length str)) (message "string is not empty"))
http://rosettacode.org/wiki/Empty_string
Empty string
Languages may have features for dealing specifically with empty strings (those containing no characters). Task   Demonstrate how to assign an empty string to a variable.   Demonstrate how to check that a string is empty.   Demonstrate how to check that a string is not empty. Other tasks related to string oper...
#Erlang
Erlang
  1> S = "". % erlang strings are actually lists, so the empty string is the same as the empty list []. [] 2> length(S). 0 3> case S of [] -> empty; [H|T] -> not_empty end. empty 4> case "aoeu" of [] -> empty; [H|T] -> not_empty end. not_empty  
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Scala
Scala
import java.io.File   def isDirEmpty(file:File) : Boolean = return file.exists && file.isDirectory && file.list.isEmpty
http://rosettacode.org/wiki/Empty_directory
Empty directory
Starting with a path to some directory, determine whether the directory is empty. An empty directory contains no files nor subdirectories. With Unix or Windows systems, every directory contains an entry for “.” and almost every directory contains “..” (except for a root directory); an empty directory contains no other...
#Seed7
Seed7
$ include "seed7_05.s7i"; include "osfiles.s7i";   const func boolean: dirEmpty (in string: dirName) is return fileType(dirName) = FILE_DIR and length(readDir(dirName)) = 0;   const proc: main is func begin writeln(dirEmpty("somedir")); end func;