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/Sum_digits_of_an_integer
Sum digits of an integer
Task Take a   Natural Number   in a given base and return the sum of its digits:   110         sums to   1   123410   sums to   10   fe16       sums to   29   f0e16     sums to   29
#Icon_and_Unicon
Icon and Unicon
procedure main(a) write(dsum(a[1]|1234,a[2]|10)) end   procedure dsum(n,b) n := integer((\b|10)||"r"||n) sum := 0 while sum +:= (0 < n) % b do n /:= b return sum end
http://rosettacode.org/wiki/Sum_of_squares
Sum of squares
Task Write a program to find the sum of squares of a numeric vector. The program should work on a zero-length vector (with an answer of   0). Related task   Mean
#K
K
  ss: {+/x*x} ss 1 2 3 4 5 55 ss@!0 0  
http://rosettacode.org/wiki/Sum_of_squares
Sum of squares
Task Write a program to find the sum of squares of a numeric vector. The program should work on a zero-length vector (with an answer of   0). Related task   Mean
#Kotlin
Kotlin
import kotlin.random.Random import kotlin.system.measureTimeMillis import kotlin.time.milliseconds   enum class Summer { MAPPING { override fun sum(values: DoubleArray) = values.map {it * it}.sum() }, SEQUENCING { override fun sum(values: DoubleArray) = values.asSequence().map {it * it}.sum(...
http://rosettacode.org/wiki/Strip_whitespace_from_a_string/Top_and_tail
Strip whitespace from a string/Top and tail
Task Demonstrate how to strip leading and trailing whitespace from a string. The solution should demonstrate how to achieve the following three results: String with leading whitespace removed String with trailing whitespace removed String with both leading and trailing whitespace removed For the purposes of thi...
#DWScript
DWScript
const TEST_STRING = ' String with spaces ';   PrintLn('"' + TEST_STRING + '"'); PrintLn('"' + TrimLeft(TEST_STRING) + '"'); PrintLn('"' + TrimRight(TEST_STRING) + '"'); PrintLn('"' + Trim(TEST_STRING) + '"');
http://rosettacode.org/wiki/Strip_whitespace_from_a_string/Top_and_tail
Strip whitespace from a string/Top and tail
Task Demonstrate how to strip leading and trailing whitespace from a string. The solution should demonstrate how to achieve the following three results: String with leading whitespace removed String with trailing whitespace removed String with both leading and trailing whitespace removed For the purposes of thi...
#EchoLisp
EchoLisp
  (define witt " The limits of my world are the limits of my langage. ") (string->html (string-trim witt)) → "The limits of my world are the limits of my langage." (string->html (string-trim-left witt)) → "The limits of my world are the limits of my langage. " (string->html (str...
http://rosettacode.org/wiki/Strong_and_weak_primes
Strong and weak primes
Definitions   (as per number theory)   The   prime(p)   is the   pth   prime.   prime(1)   is   2   prime(4)   is   7   A   strong   prime   is when     prime(p)   is   >   [prime(p-1) + prime(p+1)] ÷ 2   A     weak    prime   is when     prime(p)   is   <   [prime(p-1) + prime(p+1)] ÷ 2 Note that the defin...
#PureBasic
PureBasic
#MAX=10000000+20 Global Dim P.b(#MAX) : FillMemory(@P(),#MAX,1,#PB_Byte) Global NewList Primes.i() Global NewList Strong.i() Global NewList Weak.i()   For n=2 To Sqr(#MAX)+1 : If P(n) : m=n*n : While m<=#MAX : P(m)=0 : m+n : Wend : EndIf : Next For i=2 To #MAX : If p(i) : AddElement(Primes()) : Primes()=i : EndIf : Nex...
http://rosettacode.org/wiki/Substring
Substring
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 |...
#Clojure
Clojure
    (def string "alphabet") (def n 2) (def m 4) (def len (count string))   ;starting from n characters in and of m length; (println (subs string n (+ n m))) ;phab ;starting from n characters in, up to the end of the string; (println (subs string n)) ;phabet ;whole string minus last c...
http://rosettacode.org/wiki/Sudoku
Sudoku
Task Solve a partially filled-in normal   9x9   Sudoku grid   and display the result in a human-readable format. references Algorithmics of Sudoku   may help implement this. Python Sudoku Solver Computerphile video.
#EasyLang
EasyLang
len row[] 810 len col[] 810 len box[] 810 len grid[] 82 # func init . . for pos range 81 if pos mod 9 = 0 s$[] = strsplit input " " . dig = number s$[pos mod 9] grid[pos] = dig r = pos div 9 c = pos mod 9 b = r div 3 * 3 + c div 3 row[r * 10 + dig] = 1 col[c * 10 + dig] = 1 ...
http://rosettacode.org/wiki/Subleq
Subleq
Subleq is an example of a One-Instruction Set Computer (OISC). It is named after its only instruction, which is SUbtract and Branch if Less than or EQual to zero. Task Your task is to create an interpreter which emulates a SUBLEQ machine. The machine's memory consists of an array of signed integers.   These integers...
#Fortran
Fortran
  PROGRAM SUBLEQ0 !Simulates a One-Instruction computer, with Subtract and Branch if <= 0. INTEGER LOTS,LOAD !Document some bounds. PARAMETER (LOTS = 36, LOAD = 31) !Sufficient for the example. INTEGER IAR, MEM(0:LOTS) !The basic storage of a computer. IAR could be in memory too. INTEGER...
http://rosettacode.org/wiki/Successive_prime_differences
Successive prime differences
The series of increasing prime numbers begins: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, ... The task applies a filter to the series returning groups of successive primes, (s'primes), that differ from the next by a given value or values. Example 1: Specifying that the difference between s'primes be 2 leads to the groups: ...
#Phix
Phix
with javascript_semantics constant primes = get_primes_le(1_000_000) procedure test(sequence differences) sequence res = {} integer ld = length(differences) for i=1 to length(primes)-ld do integer pi = primes[i] for j=1 to ld do pi += differences[j] if pi!=primes[i+j]...
http://rosettacode.org/wiki/Substring/Top_and_tail
Substring/Top and tail
The task is to demonstrate how to remove the first and last characters from a string. The solution should demonstrate how to obtain the following results: String with first character removed String with last character removed String with both the first and last characters removed If the program uses UTF-8 or UTF...
#Euphoria
Euphoria
function strip_first(sequence s) return s[2..$] end function   function strip_last(sequence s) return s[1..$-1] end function   function strip_both(sequence s) return s[2..$-1] end function   puts(1, strip_first("knight")) -- strip first character puts(1, strip_last("write")) -- strip last character puts...
http://rosettacode.org/wiki/Subtractive_generator
Subtractive generator
A subtractive generator calculates a sequence of random numbers, where each number is congruent to the subtraction of two previous numbers from the sequence. The formula is r n = r ( n − i ) − r ( n − j ) ( mod m ) {\displaystyle r_{n}=r_{(n-i)}-r_{(n-j)}{\pmod {m}}} for some fixed values of...
#PARI.2FGP
PARI/GP
sgv=vector(55,i,random(10^9));sgi=1; sg()=sgv[sgi=sgi%55+1]=(sgv[sgi]-sgv[(sgi+30)%55+1])%10^9
http://rosettacode.org/wiki/Subtractive_generator
Subtractive generator
A subtractive generator calculates a sequence of random numbers, where each number is congruent to the subtraction of two previous numbers from the sequence. The formula is r n = r ( n − i ) − r ( n − j ) ( mod m ) {\displaystyle r_{n}=r_{(n-i)}-r_{(n-j)}{\pmod {m}}} for some fixed values of...
#Perl
Perl
use 5.10.0; use strict;   { # bracket state data into a lexical scope my @state; my $mod = 1_000_000_000;   sub bentley_clever { my @s = ( shift() % $mod, 1); push @s, ($s[-2] - $s[-1]) % $mod while @s < 55; @state = map($s[(34 + 34 * $_) % 55], 0 .. 54); subrand() for (55 .. 219); }   sub subrand() { b...
http://rosettacode.org/wiki/Sum_and_product_of_an_array
Sum and product of an array
Task Compute the sum and product of an array of integers.
#GAP
GAP
v := [1 .. 8];   Sum(v); # 36   Product(v); # 40320   # You can sum or multiply the result of a function   Sum(v, n -> n^2); # 204   Product(v, n -> 1/n); # 1/40320
http://rosettacode.org/wiki/Sum_and_product_of_an_array
Sum and product of an array
Task Compute the sum and product of an array of integers.
#GFA_Basic
GFA Basic
  DIM a%(10) ' put some values into the array FOR i%=1 TO 10 a%(i%)=i% NEXT i% ' sum%=0 product%=1 FOR i%=1 TO 10 sum%=sum%+a%(i%) product%=product%*a%(i%) NEXT i% ' PRINT "Sum is ";sum% PRINT "Product is ";product%  
http://rosettacode.org/wiki/Sum_of_a_series
Sum of a series
Compute the   nth   term of a series,   i.e. the sum of the   n   first terms of the corresponding sequence. Informally this value, or its limit when   n   tends to infinity, is also called the sum of the series, thus the title of this task. For this task, use: S n = ∑ k = 1 n 1 k 2 {\displa...
#Ezhil
Ezhil
  ## இந்த நிரல் தொடர் கூட்டல் (Sum Of Series) என்ற வகையைச் சேர்ந்தது   ## இந்த நிரல் ஒன்று முதல் தரப்பட்ட எண் வரை 1/(எண் * எண்) எனக் கணக்கிட்டுக் கூட்டி விடை தரும்   நிரல்பாகம் தொடர்க்கூட்டல்(எண்1)   எண்2 = 0   @(எண்3 = 1, எண்3 <= எண்1, எண்3 = எண்3 + 1) ஆக   ## ஒவ்வோர் எண்ணின் வர்க்கத்தைக் கணக்கிட்டு, ஒன்றை அதன...
http://rosettacode.org/wiki/Strip_comments_from_a_string
Strip comments from a string
Strip comments from a string You are encouraged to solve this task according to the task description, using any language you may know. The task is to remove text that follow any of a set of comment markers, (in these examples either a hash or a semicolon) from a string or input line. Whitespace debacle:   There is s...
#Erlang
Erlang
  -module( strip_comments_from_string ).   -export( [task/0] ).   task() -> io:fwrite( "~s~n", [keep_until_comment("apples, pears and bananas")] ), io:fwrite( "~s~n", [keep_until_comment("apples, pears # and bananas")] ), io:fwrite( "~s~n", [keep_until_comment("apples, pears ; and bananas")] ).       keep_u...
http://rosettacode.org/wiki/Strip_comments_from_a_string
Strip comments from a string
Strip comments from a string You are encouraged to solve this task according to the task description, using any language you may know. The task is to remove text that follow any of a set of comment markers, (in these examples either a hash or a semicolon) from a string or input line. Whitespace debacle:   There is s...
#F.23
F#
let stripComments s = s |> Seq.takeWhile (fun c -> c <> '#' && c <> ';') |> Seq.map System.Char.ToString |> Seq.fold (+) ""
http://rosettacode.org/wiki/Strip_block_comments
Strip block comments
A block comment begins with a   beginning delimiter   and ends with a   ending delimiter,   including the delimiters.   These delimiters are often multi-character sequences. Task Strip block comments from program text (of a programming language much like classic C). Your demos should at least handle simple, non-ne...
#Groovy
Groovy
def code = """ /** * Some comments * longer comments here that we can parse. * * Rahoo */ function subroutine() { a = /* inline comment */ b + c ; } /*/ <-- tricky comments */   /** * Another comment. */ function something() { } """   println ((code =~ "(?:/\\*(?:[^*]|(?...
http://rosettacode.org/wiki/Strip_block_comments
Strip block comments
A block comment begins with a   beginning delimiter   and ends with a   ending delimiter,   including the delimiters.   These delimiters are often multi-character sequences. Task Strip block comments from program text (of a programming language much like classic C). Your demos should at least handle simple, non-ne...
#Haskell
Haskell
test = "This {- is not the beginning of a block comment" -- Do your homework properly -}
http://rosettacode.org/wiki/String_interpolation_(included)
String interpolation (included)
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 |...
#APL
APL
  s ← 'Mary had a ∆ lamb' ⋄ s[s⍳'∆'] ← ⊂'little' ⋄ s ← ∊s s Mary had a little lamb   ⍝⍝⍝ Or, for a more general version which interpolates multiple positional arguments and can ⍝⍝⍝ handle both string and numeric types...   ∇r ← s sInterp sv ⍝⍝ Interpolate items in sv into s (string field substitution) ⍝ s: ...
http://rosettacode.org/wiki/String_interpolation_(included)
String interpolation (included)
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 |...
#Arturo
Arturo
sizeOfLamb: "little"   print ~"Mary had a |sizeOfLamb| lamb."
http://rosettacode.org/wiki/Sum_to_100
Sum to 100
Task Find solutions to the   sum to one hundred   puzzle. Add (insert) the mathematical operators     +   or   -     (plus or minus)   before any of the digits in the decimal numeric string   123456789   such that the resulting mathematical expression adds up to a particular sum   (in this iconic case,   ...
#Raku
Raku
my $sum = 100; my $N = 10; my @ops = ['-', ''], |( [' + ', ' - ', ''] xx 8 ); my @str = [X~] map { .Slip }, ( @ops Z 1..9 ); my %sol = @str.classify: *.subst( ' - ', ' -', :g )\ .subst( ' + ', ' ', :g ).words.sum;   my %count.push: %sol.map({ .value.elems => .key });   my $max-solutions ...
http://rosettacode.org/wiki/Strip_a_set_of_characters_from_a_string
Strip a set of characters from a string
Task Create a function that strips a set of characters from a string. The function should take two arguments:   a string to be stripped   a string containing the set of characters to be stripped The returned string should contain the first string, stripped of any characters in the second argument: print str...
#BCPL
BCPL
get "libhdr"   let contains(str, chr) = valof $( for i = 1 to str%0 if str%i = chr resultis true resultis false $)   let stripchars(str, chars, buf) = valof $( buf%0 := 0 for i = 1 to str%0 if ~contains(chars, str%i) $( buf%0 := buf%0 + 1 buf%(buf%0) := str%i $) ...
http://rosettacode.org/wiki/Strip_a_set_of_characters_from_a_string
Strip a set of characters from a string
Task Create a function that strips a set of characters from a string. The function should take two arguments:   a string to be stripped   a string containing the set of characters to be stripped The returned string should contain the first string, stripped of any characters in the second argument: print str...
#BQN
BQN
StripChars ← (¬∘∊/⊣) ¬∘∊/⊣ "She was a soul stripper. She took my heart!" StripChars "aei" "Sh ws soul strppr. Sh took my hrt!"
http://rosettacode.org/wiki/String_prepend
String prepend
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 |...
#Elixir
Elixir
  str1 = "World!" str = "Hello, " <> str1  
http://rosettacode.org/wiki/String_prepend
String prepend
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 |...
#Emacs_Lisp
Emacs Lisp
(defvar str "bar") (setq str (concat "foo" str)) str ;=> "foobar"
http://rosettacode.org/wiki/String_prepend
String prepend
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 |...
#Erlang
Erlang
1> S = "world". "world" 2> "Hello " ++ S. "Hello world"
http://rosettacode.org/wiki/String_comparison
String 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 |...
#ARM_Assembly
ARM Assembly
  /* ARM assembly Raspberry PI */ /* program comparString.s */   /* Constantes */ .equ STDOUT, 1 @ Linux output console .equ EXIT, 1 @ Linux syscall .equ WRITE, 4 @ Linux syscall /* Initialized data */ .data szMessStringEqu: .asciz "The strings are equals.\n" szMessStringNotEqu: .asciz "The string...
http://rosettacode.org/wiki/String_case
String case
Task Take the string     alphaBETA     and demonstrate how to convert it to:   upper-case     and   lower-case Use the default encoding of a string literal or plain ASCII if there is no string literal in your language. Note: In some languages alphabets toLower and toUpper is not reversable. Show any additional...
#ALGOL_68
ALGOL 68
#!/usr/local/bin/a68g --script #   # Demonstrate toupper and tolower for standard ALGOL 68 strings. This does not work for multibyte character sets. #   INT l2u = ABS "A" - ABS "a";   PROC to upper = (CHAR c)CHAR: (ABS "a" > ABS c | c |: ABS c > ABS "z" | c | REPR ( ABS c + l2u ));   PROC to lower = (CHAR c)CHAR: ...
http://rosettacode.org/wiki/String_matching
String matching
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 |...
#AutoHotkey
AutoHotkey
  String1 = abcd String2 = abab   If (SubStr(String1,1,StrLen(String2)) = String2) MsgBox, "%String1%" starts with "%String2%". IfInString, String1, %String2% { Position := InStr(String1,String2) StringReplace, String1, String1, %String2%, %String2%, UseErrorLevel MsgBox, "%String1%" contains "%String2%" at positio...
http://rosettacode.org/wiki/String_length
String length
Task Find the character and byte length of a string. This means encodings like UTF-8 need to be handled properly, as there is not necessarily a one-to-one relationship between bytes and characters. By character, we mean an individual Unicode code point, not a user-visible grapheme containing combining characters. F...
#ALGOL_68
ALGOL 68
BITS bits := bits pack((TRUE, TRUE, FALSE, FALSE)); # packed array of BOOL # BYTES bytes := bytes pack("Hello, world"); # packed array of CHAR # print(( "BITS and BYTES are fixed width:", new line, "bits width:", bits width, ", max bits: ", max bits, ", bits:", bits, new line, "bytes width: ",bytes width, ", UPB:...
http://rosettacode.org/wiki/Strip_control_codes_and_extended_characters_from_a_string
Strip control codes and extended characters from a string
Task Strip control codes and extended characters from a string. The solution should demonstrate how to achieve each of the following results:   a string with control codes stripped (but extended characters not stripped)   a string with control codes and extended characters stripped In ASCII, the control codes ...
#Forth
Forth
: strip ( buf len -- buf len' ) \ repacks buffer, so len' <= len over + over swap over ( buf dst limit src ) do i c@ 32 127 within if i c@ over c! char+ then loop over - ;
http://rosettacode.org/wiki/Strip_control_codes_and_extended_characters_from_a_string
Strip control codes and extended characters from a string
Task Strip control codes and extended characters from a string. The solution should demonstrate how to achieve each of the following results:   a string with control codes stripped (but extended characters not stripped)   a string with control codes and extended characters stripped In ASCII, the control codes ...
#Fortran
Fortran
module stripcharacters implicit none   contains   pure logical function not_control(ch) character, intent(in) :: ch not_control = iachar(ch) >= 32 .and. iachar(ch) /= 127 end function not_control   pure logical function not_extended(ch) character, intent(in) :: ch not_extended = iachar(ch) >= 32 ....
http://rosettacode.org/wiki/String_concatenation
String concatenation
String concatenation You are encouraged to solve this task according to the task description, using any language you may know. Task Create a string variable equal to any text value. Create another string variable whose value is the original variable concatenated with another string literal. To illustrate the operat...
#AutoHotkey
AutoHotkey
s := "hello" Msgbox, %s% s1 := s . " literal" ;the . is optional Msgbox, %s1%
http://rosettacode.org/wiki/String_concatenation
String concatenation
String concatenation You are encouraged to solve this task according to the task description, using any language you may know. Task Create a string variable equal to any text value. Create another string variable whose value is the original variable concatenated with another string literal. To illustrate the operat...
#AWK
AWK
BEGIN { s = "hello" print s " literal" s1 = s " literal" print s1 }
http://rosettacode.org/wiki/Sum_multiples_of_3_and_5
Sum multiples of 3 and 5
Task The objective is to write a function that finds the sum of all positive multiples of 3 or 5 below n. Show output for n = 1000. This is is the same as Project Euler problem 1. Extra credit: do this efficiently for n = 1e20 or higher.
#J
J
  NB. Naive method NB. joins two lists of the multiples of 3 and 5, then uses the ~. operator to remove duplicates.   echo 'The sum of the multiples of 3 or 5 < 1000 is ', ": +/ ~. (3*i.334), (5*i.200)     NB. inclusion/exclusion   triangular =: -:@:(*: + 1&*) sumdiv =: dyad define (triangular <. x % y) * y )   ech...
http://rosettacode.org/wiki/Sum_digits_of_an_integer
Sum digits of an integer
Task Take a   Natural Number   in a given base and return the sum of its digits:   110         sums to   1   123410   sums to   10   fe16       sums to   29   f0e16     sums to   29
#J
J
digsum=: 10&$: : (+/@(#.inv))
http://rosettacode.org/wiki/Sum_of_squares
Sum of squares
Task Write a program to find the sum of squares of a numeric vector. The program should work on a zero-length vector (with an answer of   0). Related task   Mean
#Lambdatalk
Lambdatalk
  {def sumsq {lambda {:s} {+ {S.map {lambda {:i} {* :i :i}} :s}}}} -> sumsq   {sumsq 1 2 3 4 5} -> 55 {sumsq 0} -> 0  
http://rosettacode.org/wiki/Sum_of_squares
Sum of squares
Task Write a program to find the sum of squares of a numeric vector. The program should work on a zero-length vector (with an answer of   0). Related task   Mean
#Lang5
Lang5
[1 2 3 4 5] 2 ** '+ reduce .
http://rosettacode.org/wiki/Strip_whitespace_from_a_string/Top_and_tail
Strip whitespace from a string/Top and tail
Task Demonstrate how to strip leading and trailing whitespace from a string. The solution should demonstrate how to achieve the following three results: String with leading whitespace removed String with trailing whitespace removed String with both leading and trailing whitespace removed For the purposes of thi...
#Elena
Elena
import extensions;   public program() { var toTrim := " Trim me "; console.printLine("'", toTrim.trimLeft(),"'"); console.printLine("'", toTrim.trimRight(),"'"); console.printLine("'", toTrim.trim(),"'"); }
http://rosettacode.org/wiki/Strip_whitespace_from_a_string/Top_and_tail
Strip whitespace from a string/Top and tail
Task Demonstrate how to strip leading and trailing whitespace from a string. The solution should demonstrate how to achieve the following three results: String with leading whitespace removed String with trailing whitespace removed String with both leading and trailing whitespace removed For the purposes of thi...
#Elixir
Elixir
str = "\n \t foo \n\t bar \t \n" IO.inspect String.strip(str) IO.inspect String.rstrip(str) IO.inspect String.lstrip(str)
http://rosettacode.org/wiki/Strong_and_weak_primes
Strong and weak primes
Definitions   (as per number theory)   The   prime(p)   is the   pth   prime.   prime(1)   is   2   prime(4)   is   7   A   strong   prime   is when     prime(p)   is   >   [prime(p-1) + prime(p+1)] ÷ 2   A     weak    prime   is when     prime(p)   is   <   [prime(p-1) + prime(p+1)] ÷ 2 Note that the defin...
#Python
Python
import numpy as np   def primesfrom2to(n): # https://stackoverflow.com/questions/2068372/fastest-way-to-list-all-primes-below-n-in-python/3035188#3035188 """ Input n>=6, Returns a array of primes, 2 <= p < n """ sieve = np.ones(n//3 + (n%6==2), dtype=np.bool) sieve[0] = False for i in range(int(n**0...
http://rosettacode.org/wiki/Substring
Substring
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 |...
#COBOL
COBOL
identification division. program-id. substring.   environment division. configuration section. repository. function all intrinsic.   data division. working-storage section. 01 original. 05 value "this is a string". 01 starting pic 99 v...
http://rosettacode.org/wiki/Sudoku
Sudoku
Task Solve a partially filled-in normal   9x9   Sudoku grid   and display the result in a human-readable format. references Algorithmics of Sudoku   may help implement this. Python Sudoku Solver Computerphile video.
#Elixir
Elixir
defmodule Sudoku do def display( grid ), do: ( for y <- 1..9, do: display_row(y, grid) )   def start( knowns ), do: Enum.into( knowns, Map.new )   def solve( grid ) do sure = solve_all_sure( grid ) solve_unsure( potentials(sure), sure ) end   def task( knowns ) do IO.puts "start" start = start...
http://rosettacode.org/wiki/Subleq
Subleq
Subleq is an example of a One-Instruction Set Computer (OISC). It is named after its only instruction, which is SUbtract and Branch if Less than or EQual to zero. Task Your task is to create an interpreter which emulates a SUBLEQ machine. The machine's memory consists of an array of signed integers.   These integers...
#FreeBASIC
FreeBASIC
  Dim As Integer memoria(255), contador = 0 Dim As String codigo, caracter   Input "SUBLEQ> ", codigo   While Instr(codigo, " ") memoria(contador) = Val(Left(codigo, Instr(codigo, " ") - 1)) codigo = Mid(codigo, Instr(codigo, " ") + 1) contador += 1 Wend   memoria(contador) = Val(codigo) contador = 0 Do ...
http://rosettacode.org/wiki/Successive_prime_differences
Successive prime differences
The series of increasing prime numbers begins: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, ... The task applies a filter to the series returning groups of successive primes, (s'primes), that differ from the next by a given value or values. Example 1: Specifying that the difference between s'primes be 2 leads to the groups: ...
#Picat
Picat
main => Num is 1_000_000, statistics(runtime,[Start|_]), PrimeList = primes(Num), NumPrimes = PrimeList.len, statistics(runtime,[Stop|_]), RunTime = Stop - Start, printf("There are %w primes until %w [time(ms) %w]%n",NumPrimes, Num, RunTime), DiffList = [[1], [2], [2,2], [2,4], [4,2], [2,4,6], ...
http://rosettacode.org/wiki/Substring/Top_and_tail
Substring/Top and tail
The task is to demonstrate how to remove the first and last characters from a string. The solution should demonstrate how to obtain the following results: String with first character removed String with last character removed String with both the first and last characters removed If the program uses UTF-8 or UTF...
#F.23
F#
[<EntryPoint>] let main args = let s = "一二三四五六七八九十" printfn "%A" (s.Substring(1)) printfn "%A" (s.Substring(0, s.Length - 1)) printfn "%A" (s.Substring(1, s.Length - 2)) 0
http://rosettacode.org/wiki/Subtractive_generator
Subtractive generator
A subtractive generator calculates a sequence of random numbers, where each number is congruent to the subtraction of two previous numbers from the sequence. The formula is r n = r ( n − i ) − r ( n − j ) ( mod m ) {\displaystyle r_{n}=r_{(n-i)}-r_{(n-j)}{\pmod {m}}} for some fixed values of...
#Phix
Phix
with javascript_semantics sequence state = repeat(0,55) integer pos constant MAX = 1e9 function cap(integer n) if n<0 then n += MAX end if return n end function function next() pos = mod(pos,55)+1 integer temp = cap(state[pos]-state[mod(pos+30,55)+1]) state[pos] = temp return temp end functi...
http://rosettacode.org/wiki/Sum_and_product_of_an_array
Sum and product of an array
Task Compute the sum and product of an array of integers.
#Go
Go
package main   import "fmt"   func main() { sum, prod := 0, 1 for _, x := range []int{1,2,5} { sum += x prod *= x } fmt.Println(sum, prod) }
http://rosettacode.org/wiki/Sum_and_product_of_an_array
Sum and product of an array
Task Compute the sum and product of an array of integers.
#Groovy
Groovy
[1,2,3,4,5].sum()
http://rosettacode.org/wiki/Sum_of_a_series
Sum of a series
Compute the   nth   term of a series,   i.e. the sum of the   n   first terms of the corresponding sequence. Informally this value, or its limit when   n   tends to infinity, is also called the sum of the series, thus the title of this task. For this task, use: S n = ∑ k = 1 n 1 k 2 {\displa...
#F.23
F#
let rec f (x : float) = match x with | 0. -> x | x -> (1. / (x * x)) + f (x - 1.)
http://rosettacode.org/wiki/Strip_comments_from_a_string
Strip comments from a string
Strip comments from a string You are encouraged to solve this task according to the task description, using any language you may know. The task is to remove text that follow any of a set of comment markers, (in these examples either a hash or a semicolon) from a string or input line. Whitespace debacle:   There is s...
#Factor
Factor
USE: sequences.extras : strip-comments ( str -- str' ) [ "#;" member? not ] take-while "" like ;
http://rosettacode.org/wiki/Strip_comments_from_a_string
Strip comments from a string
Strip comments from a string You are encouraged to solve this task according to the task description, using any language you may know. The task is to remove text that follow any of a set of comment markers, (in these examples either a hash or a semicolon) from a string or input line. Whitespace debacle:   There is s...
#Fantom
Fantom
class Main { static Str removeComment (Str str) { regex := Regex <|(;|#)|> matcher := regex.matcher (str) if (matcher.find) return str[0..<matcher.start] else return str }   public static Void main () { echo (removeComment ("String with comment here")) echo (removeComment ...
http://rosettacode.org/wiki/Strip_comments_from_a_string
Strip comments from a string
Strip comments from a string You are encouraged to solve this task according to the task description, using any language you may know. The task is to remove text that follow any of a set of comment markers, (in these examples either a hash or a semicolon) from a string or input line. Whitespace debacle:   There is s...
#Forth
Forth
\ Rosetta Code Strip Comment   : LASTCHAR ( addr len -- addr len c) 2DUP + C@ ; : COMMENT? ( char -- ? ) S" #;" ROT SCAN NIP ; \ test char for "#;" : -LEADING ( addr len -- addr' len') BL SKIP ; \ remove leading space characters   : -COMMENT ( addr len -- addr len') \ removes # or ; comments 1-...
http://rosettacode.org/wiki/Strip_block_comments
Strip block comments
A block comment begins with a   beginning delimiter   and ends with a   ending delimiter,   including the delimiters.   These delimiters are often multi-character sequences. Task Strip block comments from program text (of a programming language much like classic C). Your demos should at least handle simple, non-ne...
#Icon_and_Unicon
Icon and Unicon
procedure main() every (unstripped := "") ||:= !&input || "\n" # Load file as one string write(stripBlockComment(unstripped,"/*","*/")) end   procedure stripBlockComment(s1,s2,s3) #: strip comments between s2-s3 from s1 result := "" s1 ? { while result ||:= tab(find(s2)) do { move(*s2) ...
http://rosettacode.org/wiki/Strip_block_comments
Strip block comments
A block comment begins with a   beginning delimiter   and ends with a   ending delimiter,   including the delimiters.   These delimiters are often multi-character sequences. Task Strip block comments from program text (of a programming language much like classic C). Your demos should at least handle simple, non-ne...
#J
J
strip=:#~1 0 _1*./@:(|."0 1)2>4{"1(5;(0,"0~".;._2]0 :0);'/*'i.a.)&;: 1 0 0 0 2 0 2 3 2 0 2 2 )
http://rosettacode.org/wiki/String_interpolation_(included)
String interpolation (included)
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 |...
#Asymptote
Asymptote
string s1 = "big"; write("Mary had a " + s1 + " lamb"); s1 = "little"; write("Mary also had a ", s1, "lamb");
http://rosettacode.org/wiki/String_interpolation_(included)
String interpolation (included)
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 |...
#AutoHotkey
AutoHotkey
; Using the = operator LIT = little string = Mary had a %LIT% lamb.   ; Using the := operator LIT := "little" string := "Mary had a" LIT " lamb."   MsgBox %string%
http://rosettacode.org/wiki/Sum_to_100
Sum to 100
Task Find solutions to the   sum to one hundred   puzzle. Add (insert) the mathematical operators     +   or   -     (plus or minus)   before any of the digits in the decimal numeric string   123456789   such that the resulting mathematical expression adds up to a particular sum   (in this iconic case,   ...
#REXX
REXX
/*REXX pgm solves a puzzle: using the string 123456789, insert - or + to sum to 100*/ parse arg LO HI . /*obtain optional arguments from the CL*/ if LO=='' | LO=="," then LO= 100 /*Not specified? Then use the default.*/ if HI=='' | HI=="," then HI= LO ...
http://rosettacode.org/wiki/Strip_a_set_of_characters_from_a_string
Strip a set of characters from a string
Task Create a function that strips a set of characters from a string. The function should take two arguments:   a string to be stripped   a string containing the set of characters to be stripped The returned string should contain the first string, stripped of any characters in the second argument: print str...
#Bracmat
Bracmat
( ( strip = string chars s pat .  !arg:(?string.?chars) & :?s & ' ( ? ( %  : [%( utf$!sjt & ( @($chars:? !sjt ?) | rev$!sjt !s:?s ) & ~ ) ...
http://rosettacode.org/wiki/Strip_a_set_of_characters_from_a_string
Strip a set of characters from a string
Task Create a function that strips a set of characters from a string. The function should take two arguments:   a string to be stripped   a string containing the set of characters to be stripped The returned string should contain the first string, stripped of any characters in the second argument: print str...
#Burlesque
Burlesque
  blsq ) "She was a soul stripper. She took my heart!"{"aei"\/~[n!}f[ "Sh ws soul strppr. Sh took my hrt!"  
http://rosettacode.org/wiki/String_prepend
String prepend
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 |...
#ERRE
ERRE
  ...... S$=" World!" S$="Hello"+S$ PRINT(S$) ......  
http://rosettacode.org/wiki/String_prepend
String prepend
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.23
F#
let mutable s = "world!" s <- "Hello, " + s printfn "%s" s
http://rosettacode.org/wiki/String_prepend
String prepend
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 |...
#Factor
Factor
  "world" "Hello " prepend  
http://rosettacode.org/wiki/String_comparison
String 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 |...
#Arturo
Arturo
loop [["YUP" "YUP"] ["YUP" "Yup"] ["bot" "bat"] ["aaa" "zz"]] 'x [ print [x\0 "=" x\1 "=>" x\0 = x\1] print [x\0 "=" x\1 "(case-insensitive) =>" (upper x\0) = upper x\1] print [x\0 "<>" x\1 "=>" x\0 <> x\1] print [x\0 ">" x\1 "=>" x\0 > x\1] print [x\0 ">=" x\1 "=>" x\0 >= x\1] print [x\0 "<...
http://rosettacode.org/wiki/String_case
String case
Task Take the string     alphaBETA     and demonstrate how to convert it to:   upper-case     and   lower-case Use the default encoding of a string literal or plain ASCII if there is no string literal in your language. Note: In some languages alphabets toLower and toUpper is not reversable. Show any additional...
#ALGOL_W
ALGOL W
begin  % algol W doesn't have standard case conversion routines, this is one way %  % such facilities could be provided  %    % converts text to upper case  %  % assumes the letters are contiguous in the character set (as in ASC...
http://rosettacode.org/wiki/String_case
String case
Task Take the string     alphaBETA     and demonstrate how to convert it to:   upper-case     and   lower-case Use the default encoding of a string literal or plain ASCII if there is no string literal in your language. Note: In some languages alphabets toLower and toUpper is not reversable. Show any additional...
#Amazing_Hopper
Amazing Hopper
  #include <hopper.h>   #proto swapcase(_X_)   main:   // literal: String to process = "alphaBETA", {"String to process: ",String to process}println {"UPPER: ",String to process} upper,println {"LOWER: ",String to process} lower,println {"SWAP CASE: "} s="", let( s := _swap case(String to process)),{s...
http://rosettacode.org/wiki/String_matching
String matching
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 |...
#AutoIt
AutoIt
$string1 = "arduinoardblobard" $string2 = "ard"   ; == Determining if the first string starts with second string If StringLeft($string1, StringLen($string2)) = $string2 Then ConsoleWrite("1st string starts with 2nd string." & @CRLF) Else ConsoleWrite("1st string does'nt starts with 2nd string." & @CRLF) EndIf   ; == ...
http://rosettacode.org/wiki/String_length
String length
Task Find the character and byte length of a string. This means encodings like UTF-8 need to be handled properly, as there is not necessarily a one-to-one relationship between bytes and characters. By character, we mean an individual Unicode code point, not a user-visible grapheme containing combining characters. F...
#Apex
Apex
  String myString = 'abcd'; System.debug('Size of String', myString.length());  
http://rosettacode.org/wiki/Strip_control_codes_and_extended_characters_from_a_string
Strip control codes and extended characters from a string
Task Strip control codes and extended characters from a string. The solution should demonstrate how to achieve each of the following results:   a string with control codes stripped (but extended characters not stripped)   a string with control codes and extended characters stripped In ASCII, the control codes ...
#FreeBASIC
FreeBASIC
' FB 1.05.0 Win64   Function stripControlChars(s As Const String) As String If s = "" Then Return "" Dim count As Integer = 0 Dim strip(0 To Len(s) - 1) As Boolean For i As Integer = 0 To Len(s) - 1 For j As Integer = 0 To 31 If s[i] = j OrElse s[i] = 127 Then count += 1 strip(i) = Tr...
http://rosettacode.org/wiki/String_concatenation
String concatenation
String concatenation You are encouraged to solve this task according to the task description, using any language you may know. Task Create a string variable equal to any text value. Create another string variable whose value is the original variable concatenated with another string literal. To illustrate the operat...
#Axe
Axe
Lbl CONCAT Copy(r₁,L₁,length(r₁)) Copy(r₂,L₁+length(r₁),length(r₂)+1) L₁ Return
http://rosettacode.org/wiki/String_concatenation
String concatenation
String concatenation You are encouraged to solve this task according to the task description, using any language you may know. Task Create a string variable equal to any text value. Create another string variable whose value is the original variable concatenated with another string literal. To illustrate the operat...
#BASIC
BASIC
s$ = "hello" PRINT s$ + " literal" s2$ = s$ + " literal" PRINT s$ PRINT s2$
http://rosettacode.org/wiki/Sum_multiples_of_3_and_5
Sum multiples of 3 and 5
Task The objective is to write a function that finds the sum of all positive multiples of 3 or 5 below n. Show output for n = 1000. This is is the same as Project Euler problem 1. Extra credit: do this efficiently for n = 1e20 or higher.
#Java
Java
class SumMultiples { public static long getSum(long n) { long sum = 0; for (int i = 3; i < n; i++) { if (i % 3 == 0 || i % 5 == 0) sum += i; } return sum; } public static void main(String[] args) { System.out.println(getSum(1000)); } }
http://rosettacode.org/wiki/Sum_digits_of_an_integer
Sum digits of an integer
Task Take a   Natural Number   in a given base and return the sum of its digits:   110         sums to   1   123410   sums to   10   fe16       sums to   29   f0e16     sums to   29
#Java
Java
import java.math.BigInteger; public class SumDigits { public static int sumDigits(long num) { return sumDigits(num, 10); } public static int sumDigits(long num, int base) { String s = Long.toString(num, base); int result = 0; for (int i = 0; i < s.length(); i++) result += Character.digit(s.charAt(i...
http://rosettacode.org/wiki/Sum_of_squares
Sum of squares
Task Write a program to find the sum of squares of a numeric vector. The program should work on a zero-length vector (with an answer of   0). Related task   Mean
#Lasso
Lasso
define sumofsquares(values::array) => {   local(sum = 0)   with value in #values do { #sum += #value * #value }   return #sum }   sumofsquares(array(1,2,3,4,5))
http://rosettacode.org/wiki/Sum_of_squares
Sum of squares
Task Write a program to find the sum of squares of a numeric vector. The program should work on a zero-length vector (with an answer of   0). Related task   Mean
#LFE
LFE
  (defun sum-sq (nums) (lists:foldl (lambda (x acc) (+ acc (* x x))) 0 nums))  
http://rosettacode.org/wiki/Strip_whitespace_from_a_string/Top_and_tail
Strip whitespace from a string/Top and tail
Task Demonstrate how to strip leading and trailing whitespace from a string. The solution should demonstrate how to achieve the following three results: String with leading whitespace removed String with trailing whitespace removed String with both leading and trailing whitespace removed For the purposes of thi...
#Emacs_Lisp
Emacs Lisp
(string-trim-left " left center right ") ;=> "left center right " (string-trim-right " left center right ") ;=> " left center right" (string-trim " left center right ") ;=> "left center right"
http://rosettacode.org/wiki/Strip_whitespace_from_a_string/Top_and_tail
Strip whitespace from a string/Top and tail
Task Demonstrate how to strip leading and trailing whitespace from a string. The solution should demonstrate how to achieve the following three results: String with leading whitespace removed String with trailing whitespace removed String with both leading and trailing whitespace removed For the purposes of thi...
#Erlang
Erlang
% Implemented by Arjun Sunel 1> string:strip(" Hello World! ", left). %remove leading whitespaces "Hello World! "   2> string:strip(" Hello World! ", right). % remove trailing whitespaces " Hello World!"   3> string:strip(" Hello World! ", both). % remove both leading and trailing whitespace "Hello Wor...
http://rosettacode.org/wiki/Strong_and_weak_primes
Strong and weak primes
Definitions   (as per number theory)   The   prime(p)   is the   pth   prime.   prime(1)   is   2   prime(4)   is   7   A   strong   prime   is when     prime(p)   is   >   [prime(p-1) + prime(p+1)] ÷ 2   A     weak    prime   is when     prime(p)   is   <   [prime(p-1) + prime(p+1)] ÷ 2 Note that the defin...
#Raku
Raku
sub comma { $^i.flip.comb(3).join(',').flip }   use Math::Primesieve;   my $sieve = Math::Primesieve.new;   my @primes = $sieve.primes(10_000_019);   my (@weak, @balanced, @strong);   for 1 ..^ @primes - 1 -> $p { given (@primes[$p - 1] + @primes[$p + 1]) / 2 { when * > @primes[$p] { @weak.push: @primes...
http://rosettacode.org/wiki/Substring
Substring
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 |...
#ColdFusion
ColdFusion
  <cfoutput> <cfset str = "abcdefg"> <cfset n = 2> <cfset m = 3>   <!--- Note: In CF index starts at 1 rather than 0 starting from n characters in and of m length ---> #mid( str, n, m )# <!--- starting from n characters in, up to the end of the string ---> <cfset countFromRight = Len( str ) - n + 1> #right( st...
http://rosettacode.org/wiki/Sudoku
Sudoku
Task Solve a partially filled-in normal   9x9   Sudoku grid   and display the result in a human-readable format. references Algorithmics of Sudoku   may help implement this. Python Sudoku Solver Computerphile video.
#Erlang
Erlang
  -module( sudoku ).   -export( [display/1, start/1, solve/1, task/0] ).   display( Grid ) -> [display_row(Y, Grid) || Y <- lists:seq(1, 9)]. %% A known value is {{Column, Row}, Value} %% Top left corner is {1, 1}, Bottom right corner is {9,9} start( Knowns ) -> dict:from_list( Knowns ).   solve( Grid ) -> Sure = solv...
http://rosettacode.org/wiki/Subleq
Subleq
Subleq is an example of a One-Instruction Set Computer (OISC). It is named after its only instruction, which is SUbtract and Branch if Less than or EQual to zero. Task Your task is to create an interpreter which emulates a SUBLEQ machine. The machine's memory consists of an array of signed integers.   These integers...
#Go
Go
package main   import ( "io" "log" "os" )   func main() { var mem = []int{ 15, 17, -1, 17, -1, -1, 16, 1, -1, 16, 3, -1, 15, 15, 0, 0, -1, //'H', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!', '\n', 72, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100, 33, 10, 0, } for ip := 0; ip >= 0; { swi...
http://rosettacode.org/wiki/Successive_prime_differences
Successive prime differences
The series of increasing prime numbers begins: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, ... The task applies a filter to the series returning groups of successive primes, (s'primes), that differ from the next by a given value or values. Example 1: Specifying that the difference between s'primes be 2 leads to the groups: ...
#Prolog
Prolog
prime(2). % use swi prolog prime(N):- N /\ 1 > 0, % odd M is floor(sqrt(N)) - 1, % reverse 2*I+1 Max is M // 2, % integer division forall(between(1, Max, I), N mod (2*I+1) > 0).   primesByDiffs([],_,[]). primesByDiffs([Prime|Primes], Diff, [Slide|Slides]):- length(Diff, Len0), Len is Le...
http://rosettacode.org/wiki/Substring/Top_and_tail
Substring/Top and tail
The task is to demonstrate how to remove the first and last characters from a string. The solution should demonstrate how to obtain the following results: String with first character removed String with last character removed String with both the first and last characters removed If the program uses UTF-8 or UTF...
#Factor
Factor
USING: io kernel sequences ; "Rosetta code" [ rest ] [ but-last ] [ rest but-last ] tri [ print ] tri@
http://rosettacode.org/wiki/Subtractive_generator
Subtractive generator
A subtractive generator calculates a sequence of random numbers, where each number is congruent to the subtraction of two previous numbers from the sequence. The formula is r n = r ( n − i ) − r ( n − j ) ( mod m ) {\displaystyle r_{n}=r_{(n-i)}-r_{(n-j)}{\pmod {m}}} for some fixed values of...
#PicoLisp
PicoLisp
(setq *Bentley (apply circ (need 55)) *Bentley2 (nth *Bentley 32) )   (de subRandSeed (S) (let (N 1 P (nth *Bentley 55)) (set P S) (do 54 (set (setq P (nth P 35)) N) (when (lt0 (setq N (- S N))) (inc 'N 1000000000) ) (setq S (car P)) ) ) (do 165 (subRand))...
http://rosettacode.org/wiki/Subtractive_generator
Subtractive generator
A subtractive generator calculates a sequence of random numbers, where each number is congruent to the subtraction of two previous numbers from the sequence. The formula is r n = r ( n − i ) − r ( n − j ) ( mod m ) {\displaystyle r_{n}=r_{(n-i)}-r_{(n-j)}{\pmod {m}}} for some fixed values of...
#PL.2FI
PL/I
  subtractive_generator: procedure options (main);   declare (r, s) (0:54) fixed binary (31); declare (i, n, seed) fixed binary (31);   /* Bentley's initialization */ seed = 292929; s(0) = seed; s(1) = 1;   /* Compute s2,s3,...,s54 using the subtractive formula sn = s(n-2) - s(n-1)(mod 10**9). */ ...
http://rosettacode.org/wiki/Sum_and_product_of_an_array
Sum and product of an array
Task Compute the sum and product of an array of integers.
#GW-BASIC
GW-BASIC
10 REM Create an array with some test DATA in it 20 DIM A(5) 30 FOR I = 1 TO 5: READ A(I): NEXT I 40 DATA 1, 2, 3, 4, 5 50 REM Find the sum of elements in the array 60 S = 0 65 P = 1 70 FOR I = 1 TO 5 72 S = SUM + A(I) 75 P = P * A(I) 77 NEXT I 80 PRINT "The sum is "; S; 90 PRINT " and the product is "; P
http://rosettacode.org/wiki/Sum_of_a_series
Sum of a series
Compute the   nth   term of a series,   i.e. the sum of the   n   first terms of the corresponding sequence. Informally this value, or its limit when   n   tends to infinity, is also called the sum of the series, thus the title of this task. For this task, use: S n = ∑ k = 1 n 1 k 2 {\displa...
#Factor
Factor
1000 [1,b] [ >float sq recip ] map-sum
http://rosettacode.org/wiki/Strip_comments_from_a_string
Strip comments from a string
Strip comments from a string You are encouraged to solve this task according to the task description, using any language you may know. The task is to remove text that follow any of a set of comment markers, (in these examples either a hash or a semicolon) from a string or input line. Whitespace debacle:   There is s...
#Fortran
Fortran
!**************************************************** module string_routines !**************************************************** implicit none private public :: strip_comments contains !****************************************************   function strip_comments(str,c) result(str2) implicit none characte...
http://rosettacode.org/wiki/Strip_block_comments
Strip block comments
A block comment begins with a   beginning delimiter   and ends with a   ending delimiter,   including the delimiters.   These delimiters are often multi-character sequences. Task Strip block comments from program text (of a programming language much like classic C). Your demos should at least handle simple, non-ne...
#Java
Java
import java.io.*;   public class StripBlockComments{ public static String readFile(String filename) { BufferedReader reader = new BufferedReader(new FileReader(filename)); try { StringBuilder fileContents = new StringBuilder(); char[] buffer = new char[4096]; while (reader.read(buffer, 0, 4096) > 0...
http://rosettacode.org/wiki/String_interpolation_(included)
String interpolation (included)
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 |...
#AWK
AWK
#!/usr/bin/awk -f BEGIN { str="Mary had a # lamb." gsub(/#/, "little", str) print str }
http://rosettacode.org/wiki/String_interpolation_(included)
String interpolation (included)
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 |...
#BASIC
BASIC
x$ = "big" print "Mary had a "; x$; " lamb"   x$ = "little" print "Mary also had a "; ljust(x$, length(x$)); " lamb"
http://rosettacode.org/wiki/Sum_to_100
Sum to 100
Task Find solutions to the   sum to one hundred   puzzle. Add (insert) the mathematical operators     +   or   -     (plus or minus)   before any of the digits in the decimal numeric string   123456789   such that the resulting mathematical expression adds up to a particular sum   (in this iconic case,   ...
#Ruby
Ruby
digits = ("1".."9").to_a   ar = ["+", "-", ""].repeated_permutation(digits.size).filter_map do |op_perm| str = op_perm.zip(digits).join str unless str.start_with?("+") end res = ar.group_by{|str| eval(str)}   puts res[100] , ""   sum, solutions = res.max_by{|k,v| v.size} puts "#{sum} has #{solutions.size} solutions...
http://rosettacode.org/wiki/Strip_a_set_of_characters_from_a_string
Strip a set of characters from a string
Task Create a function that strips a set of characters from a string. The function should take two arguments:   a string to be stripped   a string containing the set of characters to be stripped The returned string should contain the first string, stripped of any characters in the second argument: print str...
#C
C
#include <string.h> #include <stdio.h> #include <stdlib.h>   /* removes all chars from string */ char *strip_chars(const char *string, const char *chars) { char * newstr = malloc(strlen(string) + 1); int counter = 0;   for ( ; *string; string++) { if (!strchr(chars, *string)) { newstr[ counter ] = *st...
http://rosettacode.org/wiki/Strip_a_set_of_characters_from_a_string
Strip a set of characters from a string
Task Create a function that strips a set of characters from a string. The function should take two arguments:   a string to be stripped   a string containing the set of characters to be stripped The returned string should contain the first string, stripped of any characters in the second argument: print str...
#C.23
C#
using System;   public static string RemoveCharactersFromString(string testString, string removeChars) { char[] charAry = removeChars.ToCharArray(); string returnString = testString; foreach (char c in charAry) { while (returnString.IndexOf(c) > -1) { returnString = returnStr...
http://rosettacode.org/wiki/String_prepend
String prepend
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 |...
#Falcon
Falcon
  /* created by Aykayayciti Earl Lamont Montgomery April 9th, 2018 */     s = "fun " s = s + "Falcon" > s  
http://rosettacode.org/wiki/String_prepend
String prepend
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 |...
#Forth
Forth
\ the following functions are commonly native to a Forth system. Shown for completeness   : C+! ( n addr -- ) dup c@ rot + swap c! ; \ primitive: increment a byte at addr by n   : +PLACE ( addr1 length addr2 -- ) \ Append addr1 length to addr2 2dup 2>r count + swap mov...
http://rosettacode.org/wiki/String_comparison
String 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 |...
#Astro
Astro
fun compare(a, b): print("\n$a is of type ${typeof(a)} and $b is of type ${typeof(b)}") if a < b: print("$a is strictly less than $b") if a <= b: print("$a is less than or equal to $b") if a > b: print("$a is strictly greater than $b") if a >= b: print("$a is greater than or equal to $b") if a ...
http://rosettacode.org/wiki/String_case
String case
Task Take the string     alphaBETA     and demonstrate how to convert it to:   upper-case     and   lower-case Use the default encoding of a string literal or plain ASCII if there is no string literal in your language. Note: In some languages alphabets toLower and toUpper is not reversable. Show any additional...
#APL
APL
a←'abcdefghijklmnopqrstuvwxyz' A←'ABCDEFGHIJKLMNOPQRSTUVWXYZ' X←'alphaBETA' (a,⎕AV)[(A,⎕AV)⍳'alphaBETA'] alphabeta (A,⎕AV)[(a,⎕AV)⍳'alphaBETA'] ALPHABETA