aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Westerberg <drclaw@mac.com>2020-03-09 07:17:30 +1000
committerRuben Westerberg <drclaw@mac.com>2020-03-09 07:17:30 +1000
commitf8eec0fc7d14aa0e6c2611d7cf5d404c32e50ecb (patch)
tree0ba3b01f1f1a7d1862a1b7143d49f9b2057b4005
parentf054c9d45cb83411e003b1755c58b7b7e49b6412 (diff)
downloadperlweeklychallenge-club-f8eec0fc7d14aa0e6c2611d7cf5d404c32e50ecb.tar.gz
perlweeklychallenge-club-f8eec0fc7d14aa0e6c2611d7cf5d404c32e50ecb.tar.bz2
perlweeklychallenge-club-f8eec0fc7d14aa0e6c2611d7cf5d404c32e50ecb.zip
Added readme
-rw-r--r--challenge-050/ruben-westerberg/README9
1 files changed, 4 insertions, 5 deletions
diff --git a/challenge-050/ruben-westerberg/README b/challenge-050/ruben-westerberg/README
index 1e26e2861c..82996f5670 100644
--- a/challenge-050/ruben-westerberg/README
+++ b/challenge-050/ruben-westerberg/README
@@ -2,12 +2,11 @@ Solution by Ruben Westerberg
ch-1.pl and ch-1.raku
===================
-Run program with a single commandline argument with the number to test. Prints out a multiple of the number only containing 1s and 0s. 55 is used as the default if not value is provided
+Range merging
+Merges ranges of numbers. If command line arguments are given in the form of '[min, max], [min2, max2],...' these will be used as the ranges to merge
ch-2.pl and ch-2.raku
===================
-Demonstration of LRU cache.
+Noble integer
-A 'slow large' backing store is simulated with a delay in accessing the elements of the store.The cache loads values from the store when a cache 'miss' occours in reading. In writing, the cache only writes to the backing store when the cached element is to be deleted from the LRU list.
-
-The demonstration program randomly uses read and write calls to the cache. There are more acces operations than the original size of the backing store. It will grow and show undefined elements as 'N/A'
+Run the program to find Noble integer in a generated list. If a command line argument is give this is the size of the list to use