User contributions for CalmoSoft
3 November 2023
- 18:3418:34, 3 November 2023 diff hist −2 m 15 puzzle game →{{header|Ring}}
- 18:2718:27, 3 November 2023 diff hist +69 m 15 puzzle game →{{header|Ring}}
- 18:1618:16, 3 November 2023 diff hist −1 m 15 puzzle game →{{header|Ring}}
- 18:1518:15, 3 November 2023 diff hist +11,915 m 15 puzzle game →{{header|Ring}}
- 18:0118:01, 3 November 2023 diff hist +1 m 15 puzzle game →{{header|Ring}}
- 18:0018:00, 3 November 2023 diff hist −9 m 15 puzzle game →{{header|Ring}}
- 17:5417:54, 3 November 2023 diff hist −4 m 15 puzzle game →{{header|Ring}}
- 17:5317:53, 3 November 2023 diff hist 0 15 puzzle game →{{header|Ring}}
- 17:5217:52, 3 November 2023 diff hist +11 15 puzzle game →{{header|Ring}}
- 17:5017:50, 3 November 2023 diff hist +135 15 puzzle game →{{header|11l}}
13 October 2023
- 16:0816:08, 13 October 2023 diff hist +401 Hex words No edit summary
- 15:5015:50, 13 October 2023 diff hist +3,807 Hex words No edit summary
24 September 2023
- 19:4019:40, 24 September 2023 diff hist −38 15 puzzle game →{{header|Ring}} Tag: Manual revert
- 19:3719:37, 24 September 2023 diff hist +38 15 puzzle game →{{header|Ring}}
- 19:1619:16, 24 September 2023 diff hist +52 N File:CalmoSoftFifteenPuzzle.png This is a classic Fifteen Puzzle Game. current
9 September 2023
- 07:2307:23, 9 September 2023 diff hist −32 Category:Ring User No edit summary current
26 June 2023
25 June 2023
- 11:5111:51, 25 June 2023 diff hist +1,286 Determine sentence type →{{header|RPL}}
11 June 2023
- 07:0607:06, 11 June 2023 diff hist +8 Getting the number of decimal places →{{header|Ring}}
- 07:0507:05, 11 June 2023 diff hist +48 Getting the number of decimal places →{{header|Ring}}
- 07:0307:03, 11 June 2023 diff hist +192 Getting the number of decimal places →{{header|Ring}}
10 June 2023
- 13:5713:57, 10 June 2023 diff hist 0 Erdős-primes →{{header|Ring}}
- 13:5613:56, 10 June 2023 diff hist +65 Erdős-primes →{{header|Ring}}
- 13:4513:45, 10 June 2023 diff hist +851 Erdős-primes →{{header|Rust}}
24 May 2023
- 15:1715:17, 24 May 2023 diff hist −58 Giuga numbers →{{header|Ring}}
- 15:1615:16, 24 May 2023 diff hist −44 Giuga numbers →{{header|Ring}}
- 15:1215:12, 24 May 2023 diff hist +942 Giuga numbers →{{header|Ruby}}
11 May 2023
- 17:2517:25, 11 May 2023 diff hist +710 Factorial primes →{{header|RPL}}
25 April 2023
- 14:2414:24, 25 April 2023 diff hist +5 Extreme primes →{{header|Wren}}
23 April 2023
- 17:1417:14, 23 April 2023 diff hist +90 Extreme primes →{{header|Wren}}
- 13:0313:03, 23 April 2023 diff hist +1,123 N Extreme primes Created page with "<big>Definition</big> <br><br> Write down the first prime number, add the next prime number and if it is prime, add it to the series and so on. These primes are called '''extreme primes''' <br><br> <big>Task</big> <br><br> Find and display the first '''30 p extreme prime''' number on this page. <br><br> =={{header|Ring}}== <syntaxhighlight lang="ring"> see "working..." + nl limit = 2000 Primes = [] for n = 1 to limit if isPrime(n) add(Primes,n) ok next..."
20 April 2023
- 10:1910:19, 20 April 2023 diff hist +1 Multiplicatively perfect numbers →{{header|Ring}}
- 10:1710:17, 20 April 2023 diff hist −59 Multiplicatively perfect numbers →Duplicate of task Semiprime
- 05:0705:07, 20 April 2023 diff hist +1,433 Multiplicatively perfect numbers →{{header|Ring}}
17 April 2023
- 17:0217:02, 17 April 2023 diff hist +2,020 N Multiplicatively perfect numbers Created page with "Definition <br><br> If the product of the divisors of an integer n (other than 1 and n itself) is equal to the number itself, then n is a special number. <br> Task <br> Find and show on this page the Special numbers where n < 500 <br> =={{header|Ring}}== <syntaxhighlight lang="ring"> see "working..." + nl limit = 500 Divisors = [] for n = 1 to limit pro = 1 Divisors = [] for m = 2 to ceil(sqrt(n))+1 if n % m = 0 pro = pro * m ad..."
13 April 2023
- 15:2115:21, 13 April 2023 diff hist +1,966 Ormiston pairs →{{header|Rust}}
7 April 2023
- 07:4007:40, 7 April 2023 diff hist +1,860 N CalmoSoft primes Created page with "'''Definition''' <br><br> Let p(1),p(2),p(3), ... ,p(n) be consecutive prime numbers, where p(n) < 100. If the sum of these numbers is a prime number, then these numbers are called '''CalmoSoft primes''' <br><br> '''Task''' <br><br> Let's find and show here the longest sequence of CalmoSoft primes. <br><br> =={{header|Ring}}== <syntaxhighlight lang="ring"> see "works..." + nl limit = 100 Primes = [] OldPrimes = [] NewPrimes = [] for p = 1 to limit if isPrime(p)..."
- 07:1307:13, 7 April 2023 diff hist −1,554 Rosetta Code:CalmoSoft primes →{{header|Ring}}
- 06:5506:55, 7 April 2023 diff hist +1,838 N Rosetta Code:CalmoSoft primes Created page with "'''Definition''' <br><br> Let p(1),p(2),p(3), ... ,p(n) be prime numbers, where p(n) < 100. If the sum of these primes is a prime number. then these numbers are called '''Calmo primes''' <br><br> '''Task''' <br><br> Find and show here the longest series of '''Calmo primes''' <br><br> =={{header|Ring}}== <syntaxhighlight lang="ring"> see "works..." + nl limit = 100 Primes = [] OldPrimes = [] NewPrimes = [] for p = 1 to limit if isPrime(p) add(Primes,p) ok n..."
4 April 2023
- 04:5104:51, 4 April 2023 diff hist −59 Ultra useful primes →{{header|Ring}}
2 April 2023
- 18:5218:52, 2 April 2023 diff hist +9 Ultra useful primes →{{header|Ring}}
- 14:2514:25, 2 April 2023 diff hist +19 Ultra useful primes →{{header|Ring}}
- 14:2114:21, 2 April 2023 diff hist +733 Ultra useful primes →{{header|Ruby}}
25 March 2023
- 15:2015:20, 25 March 2023 diff hist −1 Double Twin Primes →{{header|Ring}}
- 15:1815:18, 25 March 2023 diff hist −10 Double Twin Primes →{{header|Ring}}
- 15:1015:10, 25 March 2023 diff hist −134 Double Twin Primes →{{header|Ring}}
24 March 2023
- 15:1515:15, 24 March 2023 diff hist +15 Double Twin Primes →{{header|Ring}}
- 15:0615:06, 24 March 2023 diff hist +1,158 N Double Twin Primes Created page with "'''Definition''' <br> Let (p1,p2) and (p3,p4) be twin primes where p3 - p2 = 4. <br> Such primes called '''Double Twin Primes''' <br> <br> '''Example''' <br> [5,7,11,13] <br> '''Task''' <br> Find and show here all Double Twin Primes under 1000. <br> =={{header|Ring}}== <syntaxhighlight lang="ring"> see "works..." + nl primes = [] limit = 1000 for n =1 to limit/2 if isPrime(n) add(primes,n) ok next lenPrimes = len(primes)-3 for m = 1 to lenPrimes if isP..."
19 March 2023
- 12:5212:52, 19 March 2023 diff hist +2,646 Calmo numbers →{{header|ALGOL 68}}
- 08:4108:41, 19 March 2023 diff hist −2,647 Calmo numbers →{{header|Ring}}