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/Josephus_problem
Josephus problem
Josephus problem is a math puzzle with a grim description: n {\displaystyle n} prisoners are standing on a circle, sequentially numbered from 0 {\displaystyle 0} to n − 1 {\displaystyle n-1} . An executioner walks along the circle, starting from prisoner 0 {\displaystyle 0} , removing eve...
#ZX_Spectrum_Basic
ZX Spectrum Basic
10 LET n=41: LET k=3: LET m=0 20 GO SUB 100 30 PRINT "n= ";n;TAB (7);"k= ";k;TAB (13);"final survivor= ";lm 40 STOP 100 REM Josephus 110 REM Return m-th on the reversed kill list; m=0 is final survivor. 120 LET lm=m: REM Local copy of m 130 FOR a=m+1 TO n 140 LET lm=FN m(lm+k,a) 150 NEXT a 160 RETURN 200 DEF FN m(x,y...
http://rosettacode.org/wiki/I_before_E_except_after_C
I before E except after C
The phrase     "I before E, except after C"     is a widely known mnemonic which is supposed to help when spelling English words. Task Using the word list from   http://wiki.puzzlers.org/pub/wordlists/unixdict.txt, check if the two sub-clauses of the phrase are plausible individually:   "I before E when not pre...
#Kotlin
Kotlin
// version 1.0.6   import java.net.URL import java.io.InputStreamReader import java.io.BufferedReader   fun isPlausible(n1: Int, n2: Int) = n1 > 2 * n2   fun printResults(source: String, counts: IntArray) { println("Results for $source") println(" i before e except after c") println(" for ${counts[0...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Icon_and_Unicon
Icon and Unicon
s := "123" # s is a string s +:= 1 # s is now an integer
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#IDL
IDL
str = '1234' print, string(fix(str)+1) ;==> 1235
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#Fortran
Fortran
program arithif integer a, b   c fortran 77 I/O statements, for simplicity read(*,*) a, b   if ( a - b ) 10, 20, 30 10 write(*,*) a, ' is less than ', b goto 40   20 write(*,*) a, ' is equal to ', b goto 40   30 write(*,*) a, ' is greater than ', b 40 continue   end
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Scala
Scala
(load "filename")
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Scheme
Scheme
(load "filename")
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Seed7
Seed7
$ include "seed7_05.s7i";
http://rosettacode.org/wiki/IBAN
IBAN
This page uses content from Wikipedia. The original article was at IBAN. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) The   International Bank Account Number (IBAN)   is an internationally agree...
#jq
jq
  # strip the input string of spaces and tabs: gsub("[ \t]";"") # check the string is ALPHAnumeric | test("^[A-Z0-9]+$") # check its length is as determined by the country code: and length == $lengths[.[0:2]] # check the mod 97 criterion: and ( (.[4:] + .[0:4]) | letters2digits |...
http://rosettacode.org/wiki/Humble_numbers
Humble numbers
Humble numbers are positive integers which have   no   prime factors   >   7. Humble numbers are also called   7-smooth numbers,   and sometimes called   highly composite, although this conflicts with another meaning of   highly composite numbers. Another way to express the above is: humble = 2i × 3j × 5k...
#Tcl
Tcl
  proc humble? x { foreach f {2 3 5 7} { while {$x % $f == 0} {set x [expr {$x / $f}]} } return [expr {$x == 1}] } set t1 {} for {set i 1} {[llength $t1] < 50} {incr i} { if [humble? $i] {lappend t1 $i} } puts $t1  
http://rosettacode.org/wiki/Humble_numbers
Humble numbers
Humble numbers are positive integers which have   no   prime factors   >   7. Humble numbers are also called   7-smooth numbers,   and sometimes called   highly composite, although this conflicts with another meaning of   highly composite numbers. Another way to express the above is: humble = 2i × 3j × 5k...
#Visual_Basic_.NET
Visual Basic .NET
Module Module1   Function IsHumble(i As Long) As Boolean If i <= 1 Then Return True End If If i Mod 2 = 0 Then Return IsHumble(i \ 2) End If If i Mod 3 = 0 Then Return IsHumble(i \ 3) End If If i Mod 5 = 0 Then R...
http://rosettacode.org/wiki/Identity_matrix
Identity matrix
Task Build an   identity matrix   of a size known at run-time. An identity matrix is a square matrix of size n × n, where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes). I n = [ 1 0 0 ⋯ 0 0 1 0 ⋯ 0 0 0 1 ⋯ 0 ⋮ ⋮ ⋮ ⋱ ...
#F.23
F#
  let ident n = Array2D.init n n (fun i j -> if i = j then 1 else 0)  
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Perl
Perl
my $i = 0; print ++$i, "\n" while 1;
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Phix
Phix
without javascript_semantics integer i = 0 while 1 do ?i i += 1 end while
http://rosettacode.org/wiki/I_before_E_except_after_C
I before E except after C
The phrase     "I before E, except after C"     is a widely known mnemonic which is supposed to help when spelling English words. Task Using the word list from   http://wiki.puzzlers.org/pub/wordlists/unixdict.txt, check if the two sub-clauses of the phrase are plausible individually:   "I before E when not pre...
#Lasso
Lasso
  local(cie,cei,ie,ei) = (:0,0,0,0)   local(match_ie) = regExp(`[^c]ie`) local(match_ei) = regExp(`[^c]ei`)   with word in include_url(`http://wiki.puzzlers.org/pub/wordlists/unixdict.txt`)->asString->split("\n") where #word >> `ie` or #word >> `ei` do { #word >> `cie`  ? #cie++ #word >> `cei`  ? ...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Inform_7
Inform 7
Home is a room.   To decide which indexed text is incremented (T - indexed text): let temp be indexed text; let temp be the player's command; change the text of the player's command to T; let N be a number; if the player's command matches "[number]": let N be the number understood; change the text of the player...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Io
Io
str := ("123" asNumber + 1) asString
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#FreeBASIC
FreeBASIC
' FB 1.05.0 Win64   Dim As Integer x, y Input "Please enter two integers, separated by a comma : ", x , y   If x < y Then Print x; " is less than "; y End If   If x = y Then Print x; " is equal to "; y End If   If x > y Then Print x; " is greater than "; y End If   Print Print "Press any key to exit" Sleep
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Sidef
Sidef
include 'file.sf';
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Smalltalk
Smalltalk
aFilename asFilename readStream fileIn
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#SNOBOL4
SNOBOL4
-INCLUDE "path/to/filename.inc"
http://rosettacode.org/wiki/IBAN
IBAN
This page uses content from Wikipedia. The original article was at IBAN. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) The   International Bank Account Number (IBAN)   is an internationally agree...
#Jsish
Jsish
var ibanLen = { NO:15, BE:16, DK:18, FI:18, FO:18, GL:18, NL:18, MK:19, SI:19, AT:20, BA:20, EE:20, KZ:20, LT:20, LU:20, CR:21, CH:21, HR:21, LI:21, LV:21, BG:22, BH:22, DE:22, GB:22, GE:22, IE:22, ME:22, RS:22, AE:23, GI:23, IL:23, AD:24, CZ:24, ES:24, MD:24, PK:24, RO:24, SA:24, SE:24, SK:24, ...
http://rosettacode.org/wiki/Humble_numbers
Humble numbers
Humble numbers are positive integers which have   no   prime factors   >   7. Humble numbers are also called   7-smooth numbers,   and sometimes called   highly composite, although this conflicts with another meaning of   highly composite numbers. Another way to express the above is: humble = 2i × 3j × 5k...
#Wren
Wren
import "/fmt" for Fmt import "/math" for Int, Nums import "/sort" for Find   var humble = Fn.new { |n| var h = List.filled(n, 0) h[0] = 1 var next2 = 2 var next3 = 3 var next5 = 5 var next7 = 7 var i = 0 var j = 0 var k = 0 var l = 0 for (m in 1...n) { h[m] = Nums.min...
http://rosettacode.org/wiki/Identity_matrix
Identity matrix
Task Build an   identity matrix   of a size known at run-time. An identity matrix is a square matrix of size n × n, where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes). I n = [ 1 0 0 ⋯ 0 0 1 0 ⋯ 0 0 0 1 ⋯ 0 ⋮ ⋮ ⋮ ⋱ ...
#Factor
Factor
USING: math.matrices prettyprint ;   6 <identity-matrix> .
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#PicoLisp
PicoLisp
(for (I 1 T (inc I)) (printsp I) )
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Piet
Piet
int i=1; while(true) write("%d\n", i++);
http://rosettacode.org/wiki/I_before_E_except_after_C
I before E except after C
The phrase     "I before E, except after C"     is a widely known mnemonic which is supposed to help when spelling English words. Task Using the word list from   http://wiki.puzzlers.org/pub/wordlists/unixdict.txt, check if the two sub-clauses of the phrase are plausible individually:   "I before E when not pre...
#Lua
Lua
-- Needed to get dictionary file from web server local http = require("socket.http")   -- Return count of words that contain pattern function count (pattern, wordList) local total = 0 for word in wordList:gmatch("%S+") do if word:match(pattern) then total = total + 1 end end return total end   -...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#J
J
incrTextNum=: >:&.".
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Java
Java
String s = "12345"; s = String.valueOf(Integer.parseInt(s) + 1);
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#friendly_interactive_shell
friendly interactive shell
read a read b   if test $a -gt $b echo Greater else if test $a -lt $b echo Less else if test $a -eq $b echo Equal end
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#Frink
Frink
  [a,b] = eval[input["Enter numbers",["a","b"]]] if a<b println["$a < $b"] if a==b println["$a == $b"] if a>b println["$a > $b"]  
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#SPL
SPL
$include.txt
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Standard_ML
Standard ML
use "path/to/file";
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Tcl
Tcl
source "foobar.tcl"
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#UNIX_Shell
UNIX Shell
. myfile.sh # Include the contents of myfile.sh
http://rosettacode.org/wiki/IBAN
IBAN
This page uses content from Wikipedia. The original article was at IBAN. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) The   International Bank Account Number (IBAN)   is an internationally agree...
#Julia
Julia
function validiban(iban::AbstractString) country2length = Dict( "AL" => 28, "AD" => 24, "AT" => 20, "AZ" => 28, "BE" => 16, "BH" => 22, "BA" => 20, "BR" => 29, "BG" => 22, "CR" => 21, "HR" => 21, "CY" => 28, "CZ" => 24, "DK" => 18, "DO" => 28, "EE" => 20, "FO" => 18, "FI" => 18, "FR" => 27, ...
http://rosettacode.org/wiki/Humble_numbers
Humble numbers
Humble numbers are positive integers which have   no   prime factors   >   7. Humble numbers are also called   7-smooth numbers,   and sometimes called   highly composite, although this conflicts with another meaning of   highly composite numbers. Another way to express the above is: humble = 2i × 3j × 5k...
#zkl
zkl
var [const] BI=Import("zklBigNum"); // libGMP var one = BI(1), two = BI(2), three = BI(3), five = BI(5), seven = BI(7);   fcn humble(n){ // --> List of BigInt Humble numbers h:=List.createLong(n); h.append(one); next2,next3 := two.copy(), three.copy(); next5,next7 := five.copy(), seven.copy(); ...
http://rosettacode.org/wiki/Identity_matrix
Identity matrix
Task Build an   identity matrix   of a size known at run-time. An identity matrix is a square matrix of size n × n, where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes). I n = [ 1 0 0 ⋯ 0 0 1 0 ⋯ 0 0 0 1 ⋯ 0 ⋮ ⋮ ⋮ ⋱ ...
#FBSL
FBSL
  Func Identity(n)=Array id[n,n];[id]:=[1].   Identity(7) [id]  
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Pike
Pike
int i=1; while(true) write("%d\n", i++);
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#PILOT
PILOT
C  :n = 1 *InfiniteLoop T  :#n C  :n = n + 1 J  :*InfiniteLoop
http://rosettacode.org/wiki/I_before_E_except_after_C
I before E except after C
The phrase     "I before E, except after C"     is a widely known mnemonic which is supposed to help when spelling English words. Task Using the word list from   http://wiki.puzzlers.org/pub/wordlists/unixdict.txt, check if the two sub-clauses of the phrase are plausible individually:   "I before E when not pre...
#Maple
Maple
words:= HTTP:-Get("http://wiki.puzzlers.org/pub/wordlists/unixdict.txt"): lst := StringTools:-Split(words[2],"\n"): xie, cie, cei, xei := 0, 0, 0, 0: for item in lst do if searchtext("ie", item) <> 0 then if searchtext("cie", item) <> 0 then cie := cie + 1: else xie := xie + 1: fi: fi: if searchtext("ei...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#JavaScript
JavaScript
let s = '9999'; let splusplus = (+s+1)+""   console.log([splusplus, typeof splusplus]) // 10000,string
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#jq
jq
$ jq -n -M -s 'map(tonumber) | add' input.txt
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#FunL
FunL
import console.readInt   a = readInt() b = readInt()   val (_, c) = [((<), 'less than'), ((==), 'equal to'), ((>), 'greater than')].find( (compare, _) -> compare(a, b) ).get()   println( "$a is $c $b." )
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#FutureBasic
FutureBasic
_window = 1 begin enum 1 _integer1Fld _integer2Fld _compareBtn _messageLabel end enum   local fn BuildWindow window _window, @"Integer Comparison", (0,0,356,85)   textfield _integer1Fld,,, (20,44,112,21) TextFieldSetPlaceholderString( _integer1Fld, @"Integer 1" )   textfield _integer2Fld,,, (140,44,112,...
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Ursa
Ursa
import "filename.u"
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Vala
Vala
valac maps.vala --pkg gee-1.0
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#VBScript
VBScript
  Include "D:\include\pad.vbs"   Wscript.Echo lpad(12,14,"-")   Sub Include (file) dim fso: set fso = CreateObject("Scripting.FileSystemObject") if fso.FileExists(file) then ExecuteGlobal fso.OpenTextFile(file).ReadAll End Sub  
http://rosettacode.org/wiki/IBAN
IBAN
This page uses content from Wikipedia. The original article was at IBAN. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) The   International Bank Account Number (IBAN)   is an internationally agree...
#Kotlin
Kotlin
// version 1.0.6   import java.math.BigInteger   object IBAN { /* List updated to release 73, January 2017, of IBAN Registry (75 countries) */ private const val countryCodes = "" + "AD24 AE23 AL28 AT20 AZ28 BA20 BE16 BG22 BH22 BR29 " + "BY28 CH21 CR22 CY28 CZ24 DE22 DK18 DO28 EE20 ES24 "...
http://rosettacode.org/wiki/Identity_matrix
Identity matrix
Task Build an   identity matrix   of a size known at run-time. An identity matrix is a square matrix of size n × n, where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes). I n = [ 1 0 0 ⋯ 0 0 1 0 ⋯ 0 0 0 1 ⋯ 0 ⋮ ⋮ ⋮ ⋱ ...
#Fermat
Fermat
  Func Identity(n)=Array id[n,n];[id]:=[1].   Identity(7) [id]  
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#PL.2FI
PL/I
  infinity: procedure options (main); declare k fixed decimal (30); put skip edit ((k do k = 1 to 999999999999999999999999999998))(f(31)); end infinity;  
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#PL.2FM
PL/M
100H:   /* CP/M CALL AND NUMBER OUTPUT ROUTINE */ BDOS: PROCEDURE (FN, ARG); DECLARE FN BYTE, ARG ADDRESS; GO TO 5; END BDOS;   PRINT: PROCEDURE (STR); DECLARE STR ADDRESS; CALL BDOS(9, STR); END PRINT;   PRINT$NUMBER: PROCEDURE (N); DECLARE S (8) BYTE INITIAL ('.....',13,10,'$'); DECLARE (N, P)...
http://rosettacode.org/wiki/I_before_E_except_after_C
I before E except after C
The phrase     "I before E, except after C"     is a widely known mnemonic which is supposed to help when spelling English words. Task Using the word list from   http://wiki.puzzlers.org/pub/wordlists/unixdict.txt, check if the two sub-clauses of the phrase are plausible individually:   "I before E when not pre...
#Mathematica_.2F_Wolfram_Language
Mathematica / Wolfram Language
wordlist = Import["http://wiki.puzzlers.org/pub/wordlists/unixdict.txt", "Words"]; Print["The number of words in unixdict.txt = " <> ToString[Length[wordlist]]] StringMatchQ[#, ___ ~~ "c" ~~ "i" ~~ "e" ~~ ___] & /@ wordlist ; cie = Count[%, True]; StringMatchQ[#, ___ ~~ "c" ~~ "e" ~~ "i" ~~ ___] & /@ wordlist...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Jsish
Jsish
var a = "1" a = String(Number(a) + 1)
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#F.C5.8Drmul.C3.A6
Fōrmulæ
Public Sub Form_Open() Dim sIn As String = InputBox("Enter 2 integers seperated by a comma") Dim iFirst, iSecond As Integer   iFirst = Val(Split(sIn)[0]) iSecond = Val(Split(sIn)[1])   If iFirst < iSecond Then Print iFirst & " is smaller than " & iSecond & gb.NewLine If iFirst > iSecond Then Print iFirst & " is greater...
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Verbexx
Verbexx
/******************************************************************************* * /# @INCLUDE file:"filename.filetype" * - file: is just the filename * - actual full pathname is VERBEXX_INCLUDE_PATH\filename.filetype * where VERBEXX_INCLUDE_PATH is the contents of an environment var...
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Wren
Wren
import "./fmt" for Fmt // imports the Fmt module and makes the 'Fmt' class available import "./math" for Int // imports the Math module and makes the 'Int' class available   Fmt.print("The maximum safe integer in Wren is $,d.", Int.maxSafe)
http://rosettacode.org/wiki/IBAN
IBAN
This page uses content from Wikipedia. The original article was at IBAN. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) The   International Bank Account Number (IBAN)   is an internationally agree...
#Lobster
Lobster
  let cc = ["AD","AE","AL","AO","AT","AZ","BA","BE","BF","BG","BH","BI","BJ","BR","CG","CH","CI","CM","CR","CV","CY", "CZ","DE","DK","DO","DZ","EE","EG","ES","FI","FO","FR","GA","GB","GE","GI","GL","GR","GT","HR","HU","IE", "IL","IR","IS","IT","JO","KW","KZ","LB","LI","LT","LU","LV","MC","MD","ME","...
http://rosettacode.org/wiki/Identity_matrix
Identity matrix
Task Build an   identity matrix   of a size known at run-time. An identity matrix is a square matrix of size n × n, where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes). I n = [ 1 0 0 ⋯ 0 0 1 0 ⋯ 0 0 0 1 ⋯ 0 ⋮ ⋮ ⋮ ⋱ ...
#Forth
Forth
S" fsl-util.fs" REQUIRED   : build-identity ( 'p n -- 'p ) \ make an NxN identity matrix 0 DO I 1+ 0 DO I J = IF 1.0E0 DUP I J }} F! ELSE 0.0E0 DUP J I }} F! 0.0E0 DUP I J }} F! THEN LOOP LOOP ;   6 6 float matrix a{{ a{{ 6 build-identity 6 6 a{{ }}fprint
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Plain_English
Plain English
To run: Start up. Put 1 into a number. Loop. Convert the number to a string. Write the string to the console. Bump the number. Repeat. Shut down.
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#PostScript
PostScript
  1 {succ dup =} loop  
http://rosettacode.org/wiki/I_before_E_except_after_C
I before E except after C
The phrase     "I before E, except after C"     is a widely known mnemonic which is supposed to help when spelling English words. Task Using the word list from   http://wiki.puzzlers.org/pub/wordlists/unixdict.txt, check if the two sub-clauses of the phrase are plausible individually:   "I before E when not pre...
#MATLAB_.2F_Octave
MATLAB / Octave
function i_before_e_except_after_c(f)   fid = fopen(f,'r'); nei = 0; cei = 0; nie = 0; cie = 0; while ~feof(fid) c = strsplit(strtrim(fgetl(fid)),char([9,32])); if length(c) > 2, n = str2num(c{3}); else n = 1; end; if strfind(c{1},'ei')>1, nei=nei+n; end; if strfind(c{1},'cei'), cei=cei+n; end; if strfind...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Julia
Julia
import Base.+ Base.:+(s::AbstractString, n::Real) = string((x = tryparse(Int, s)) isa Int ? x + 1 : parse(Float64, s) + 1) @show "125" + 1 @show "125.15" + 1 @show "1234567890987654321" + 1  
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#K
K
1 + ."1234" 1235 1 + ."1234.56" 1235.56   / As a function inc:{1 + . x} inc "1234" 1235
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#Gambas
Gambas
Public Sub Form_Open() Dim sIn As String = InputBox("Enter 2 integers seperated by a comma") Dim iFirst, iSecond As Integer   iFirst = Val(Split(sIn)[0]) iSecond = Val(Split(sIn)[1])   If iFirst < iSecond Then Print iFirst & " is smaller than " & iSecond & gb.NewLine If iFirst > iSecond Then Print iFirst & " is greater...
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#x86_Assembly
x86 Assembly
include 'MyFile.INC'
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#XPL0
XPL0
include c:\cxpl\stdlib; DateOut(0, GetDate)
http://rosettacode.org/wiki/IBAN
IBAN
This page uses content from Wikipedia. The original article was at IBAN. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) The   International Bank Account Number (IBAN)   is an internationally agree...
#Logtalk
Logtalk
  :- object(iban).   :- info([ version is 0.1, author is 'Paulo Moura', date is 2015/10/11, comment is 'IBAN validation example using DCG rules.' ]).   :- public(valid/1).   valid(IBAN) :- phrase(iban, IBAN), !.   iban --> country_code(Code), check_digits(Check), bban(BBAN), {(BBAN*1000000 + Code*100...
http://rosettacode.org/wiki/Identity_matrix
Identity matrix
Task Build an   identity matrix   of a size known at run-time. An identity matrix is a square matrix of size n × n, where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes). I n = [ 1 0 0 ⋯ 0 0 1 0 ⋯ 0 0 0 1 ⋯ 0 ⋮ ⋮ ⋮ ⋱ ...
#Fortran
Fortran
  program identitymatrix   real, dimension(:, :), allocatable :: I character(len=8) :: fmt integer :: ms, j   ms = 10 ! the desired size   allocate(I(ms,ms)) I = 0 ! Initialize the array. forall(j = 1:ms) I(j,j) = 1 ! Set the diagonal.   ! I is the identity matrix, let's ...
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#PowerShell
PowerShell
try { for ([int]$i = 0;;$i++) { $i } } catch {break}
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Prolog
Prolog
loop(I) :- writeln(I), I1 is I+1, loop(I1).  
http://rosettacode.org/wiki/I_before_E_except_after_C
I before E except after C
The phrase     "I before E, except after C"     is a widely known mnemonic which is supposed to help when spelling English words. Task Using the word list from   http://wiki.puzzlers.org/pub/wordlists/unixdict.txt, check if the two sub-clauses of the phrase are plausible individually:   "I before E when not pre...
#Modula-2
Modula-2
MODULE IEC; IMPORT SeqIO; IMPORT Texts; FROM InOut IMPORT WriteString, WriteCard, WriteLn; FROM Strings IMPORT Pos;   VAR words, cie, cei, xie, xei: CARDINAL; xie_plausible, cei_plausible: BOOLEAN;   PROCEDURE Classify(word: ARRAY OF CHAR); VAR end: CARDINAL; BEGIN INC(words); end := Pos("", word);   ...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Kotlin
Kotlin
// version 1.0.5-2   /** overload ++ operator to increment a numeric string */ operator fun String.inc(): String = try { val num = this.toInt() (num + 1).toString() } catch(e: NumberFormatException) { this // return string unaltered }   fun main(args: Array<String>) { var ns...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Lambdatalk
Lambdatalk
  In lambdatalk every expression is a word or an S-expression, so:   {b hello world} // means "boldify the words hello and world" -> < b>hello world< /b> // HTML expression   {+ hello world} // means "add the words hello and world" -> NaN // can't do the job and returns Not a Number   {+ 123 1}...
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#Go
Go
package main   import ( "fmt" "log" )   func main() { var n1, n2 int fmt.Print("enter number: ") if _, err := fmt.Scan(&n1); err != nil { log.Fatal(err) } fmt.Print("enter number: ") if _, err := fmt.Scan(&n2); err != nil { log.Fatal(err) } switch { case n1 < n2: fmt.Println(n1, "less than", n2) case ...
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#Z80_Assembly
Z80 Assembly
include(vm.h.zkl, compiler.h.zkl, zkl.h.zkl, opcode.h.zkl);
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#zkl
zkl
include(vm.h.zkl, compiler.h.zkl, zkl.h.zkl, opcode.h.zkl);
http://rosettacode.org/wiki/Include_a_file
Include a file
Task Demonstrate the language's ability to include source code from other files. See Also Compiler/Simple file inclusion pre processor
#ZX_Spectrum_Basic
ZX Spectrum Basic
10 GO TO 9950 5000 REM We reserve line numbers 5000 to 8999 for merged code 9000 STOP: REM In case our line numbers are wrong 9950 REM Merge in our module 9955 MERGE "MODULE" 9960 REM Jump to the merged code. Pray it has the right line numbers! 9965 GO TO 5000
http://rosettacode.org/wiki/IBAN
IBAN
This page uses content from Wikipedia. The original article was at IBAN. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) The   International Bank Account Number (IBAN)   is an internationally agree...
#Lua
Lua
local length= { AL=28, AD=24, AT=20, AZ=28, BH=22, BE=16, BA=20, BR=29, BG=22, CR=21, HR=21, CY=28, CZ=24, DK=18, DO=28, EE=20, FO=18, FI=18, FR=27, GE=22, DE=22, GI=23, GR=27, GL=18, GT=28, HU=28, IS=26, IE=22, IL=23, IT=27, JO=30, KZ=20, KW=30, LV=21, LB=28, LI=21, LT=20, LU=20, MK=19, MT=31, MR=27, MU=30, ...
http://rosettacode.org/wiki/Identity_matrix
Identity matrix
Task Build an   identity matrix   of a size known at run-time. An identity matrix is a square matrix of size n × n, where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes). I n = [ 1 0 0 ⋯ 0 0 1 0 ⋯ 0 0 0 1 ⋯ 0 ⋮ ⋮ ⋮ ⋱ ...
#FreeBASIC
FreeBASIC
' FB 1.05.0 Win64   Dim As Integer n   Do Input "Enter size of matrix "; n Loop Until n > 0   Dim identity(1 To n, 1 To n) As Integer '' all zero by default   ' enter 1s in diagonal elements For i As Integer = 1 To n identity(i, i) = 1 Next   ' print identity matrix if n < 40 Print   If n < 40 Then For i As In...
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#PureBasic
PureBasic
OpenConsole() Repeat a.q+1 PrintN(Str(a)) ForEver
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Python
Python
i=1 while i: print(i) i += 1
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Q
Q
({-1 string x; x+1}\) 1
http://rosettacode.org/wiki/I_before_E_except_after_C
I before E except after C
The phrase     "I before E, except after C"     is a widely known mnemonic which is supposed to help when spelling English words. Task Using the word list from   http://wiki.puzzlers.org/pub/wordlists/unixdict.txt, check if the two sub-clauses of the phrase are plausible individually:   "I before E when not pre...
#Nim
Nim
import httpclient, strutils, strformat   const Rule1 = "\"I before E when not preceded by C\"" Rule2 = "\"E before I when preceded by C\"" Phrase = "\"I before E except after C\"" PlausibilityText: array[bool, string] = ["not plausible", "plausible"]     proc plausibility(rule: string; count1, count2: int): boo...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#LabVIEW
LabVIEW
(integer('123') + 1) -> asstring
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Lasso
Lasso
(integer('123') + 1) -> asstring
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#Groovy
Groovy
def comparison = { a, b -> println "a ? b = ${a} ? ${b} = a ${a < b ? '<' : a > b ? '>' : a == b ? '==' : '?'} b" }
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#Harbour
Harbour
PROCEDURE Compare( a, b )   IF a < b ? "A is less than B" ELSEIF a > b ? "A is more than B" ELSE ? "A equals B" ENDIF   RETURN
http://rosettacode.org/wiki/IBAN
IBAN
This page uses content from Wikipedia. The original article was at IBAN. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) The   International Bank Account Number (IBAN)   is an internationally agree...
#M2000_Interpreter
M2000 Interpreter
  \\ IBAN checker Function MakeIBANfun$ { Inventory countrylength = "AL" := 28, "AD" := 24, "AT" := 20, "AZ" := 28, "BE" := 16, "BH" := 22, "BA" := 20, "BR" := 29 Append countrylength, "BG" := 22, "CR" := 21, "HR" := 21, "CY" := 28, "CZ" := 24, "DK" := 18, "DO" := 28, "EE" := 20 Append countrylength...
http://rosettacode.org/wiki/Identity_matrix
Identity matrix
Task Build an   identity matrix   of a size known at run-time. An identity matrix is a square matrix of size n × n, where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes). I n = [ 1 0 0 ⋯ 0 0 1 0 ⋯ 0 0 0 1 ⋯ 0 ⋮ ⋮ ⋮ ⋱ ...
#Frink
Frink
n = parseInt[input["Enter matrix dimension as an integer: "]] println[formatMatrix[makeArray[[n, n], {|a,b| a==b ? 1 : 0}]]]
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Quackery
Quackery
0 [ 1+ dup echo cr again ]
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#R
R
z <- 0 repeat { print(z) z <- z + 1 }
http://rosettacode.org/wiki/Integer_sequence
Integer sequence
Task Create a program that, when run, would display all integers from   1   to   ∞   (or any relevant implementation limit),   in sequence   (i.e.   1, 2, 3, 4, etc)   if given enough time. An example may not be able to reach arbitrarily-large numbers based on implementations limits.   For example, if integer...
#Racket
Racket
#lang racket (for ([i (in-naturals)]) (displayln i))  
http://rosettacode.org/wiki/I_before_E_except_after_C
I before E except after C
The phrase     "I before E, except after C"     is a widely known mnemonic which is supposed to help when spelling English words. Task Using the word list from   http://wiki.puzzlers.org/pub/wordlists/unixdict.txt, check if the two sub-clauses of the phrase are plausible individually:   "I before E when not pre...
#Objeck
Objeck
  use HTTP; use Collection;   class HttpTest { function : Main(args : String[]) ~ Nil { IsPlausibleRule("http://wiki.puzzlers.org/pub/wordlists/unixdict.txt"); }   function : PlausibilityCheck(comment : String, x : Int, y : Int) ~ Bool { ratio := x->As(Float) / y->As(Float); " Checking plausibility o...
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#LaTeX
LaTeX
\documentclass{minimal} \newcounter{tmpnum} \newcommand{\stringinc}[1]{% \setcounter{tmpnum}{#1}% \stepcounter{tmpnum}% \arabic{tmpnum}% } \begin{document} The number 12345 is followed by \stringinc{12345}. \end{document}
http://rosettacode.org/wiki/Increment_a_numerical_string
Increment a numerical string
Task Increment a numerical string.
#Liberty_BASIC
Liberty BASIC
' [RC] Increment a numerical string.   o$ ="12345" print o$   v =val( o$) o$ =str$( v +1) print o$   end
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#Haskell
Haskell
myCompare :: Integer -> Integer -> String myCompare a b | a < b = "A is less than B" | a > b = "A is greater than B" | a == b = "A equals B"   main = do a <- readLn b <- readLn putStrLn $ myCompare a b
http://rosettacode.org/wiki/Integer_comparison
Integer comparison
Basic Data Operation This is a basic data operation. It represents a fundamental action on a basic data type. You may see other such operations in the Basic Data Operations category, or: Integer Operations Arithmetic | Comparison Boolean Operations Bitwise | Logical String Operations Concatenation | Interpolation |...
#hexiscript
hexiscript
let a scan int let b scan int   if a < b println a + " is less than " + b endif   if a > b println a + " is greater than " + b endif   if a = b println a + " is equal to " + b endif
http://rosettacode.org/wiki/IBAN
IBAN
This page uses content from Wikipedia. The original article was at IBAN. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) The   International Bank Account Number (IBAN)   is an internationally agree...
#Mathematica_.2F_Wolfram_Language
Mathematica / Wolfram Language
CountryCodes={{"AL",28},{"AD",24},{"AT",20},{"AZ",28},{"BE",16},{"BH",22},{"BA",20},{"BR",29},{"BG",22},{"CR",21},{"HR",21},{"CY",28},{"CZ",24},{"DK",18},{"DO",28},{"EE",20},{"FO",18},{"FI",18},{"FR",27},{"GE",22},{"DE",22},{"GI",23},{"GR",27},{"GL",18},{"GT",28},{"HU",28},{"IS",26},{"IE",22},{"IL",23},{"IT",27},{"KZ",...
http://rosettacode.org/wiki/Identity_matrix
Identity matrix
Task Build an   identity matrix   of a size known at run-time. An identity matrix is a square matrix of size n × n, where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes). I n = [ 1 0 0 ⋯ 0 0 1 0 ⋯ 0 0 0 1 ⋯ 0 ⋮ ⋮ ⋮ ⋱ ...
#FunL
FunL
def identity( n ) = vector( n, n, \r, c -> if r == c then 1 else 0 )   println( identity(3) )