aboutsummaryrefslogtreecommitdiff
path: root/challenge-050/ruben-westerberg/README
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2020-03-02 01:15:45 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2020-03-02 01:15:45 +0000
commit6bd129bcad7839a70835cca56e77c52490b886e8 (patch)
tree7452f125f8c30d7a655282b85cdaf7f3bce43bf6 /challenge-050/ruben-westerberg/README
parentdc7eb0d5f09d00b9acb8e44cb2b170c523293a7a (diff)
downloadperlweeklychallenge-club-6bd129bcad7839a70835cca56e77c52490b886e8.tar.gz
perlweeklychallenge-club-6bd129bcad7839a70835cca56e77c52490b886e8.tar.bz2
perlweeklychallenge-club-6bd129bcad7839a70835cca56e77c52490b886e8.zip
- Added template for Challenge 050.
Diffstat (limited to 'challenge-050/ruben-westerberg/README')
-rw-r--r--challenge-050/ruben-westerberg/README13
1 files changed, 13 insertions, 0 deletions
diff --git a/challenge-050/ruben-westerberg/README b/challenge-050/ruben-westerberg/README
new file mode 100644
index 0000000000..1e26e2861c
--- /dev/null
+++ b/challenge-050/ruben-westerberg/README
@@ -0,0 +1,13 @@
+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
+
+ch-2.pl and ch-2.raku
+===================
+Demonstration of LRU cache.
+
+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'