<feed xmlns='http://www.w3.org/2005/Atom'>
<title>github/perlweeklychallenge-club.git/challenge-080/tyler-wardhaugh, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/'/>
<entry>
<title>- Proposed patch to security issues in Clojure solutions.</title>
<updated>2024-04-10T19:04:10+00:00</updated>
<author>
<name>Mohammad S Anwar</name>
<email>mohammad.anwar@yahoo.com</email>
</author>
<published>2024-04-10T19:04:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=5be030962ebbdcd2d1ac96a4e78c5818ab92e434'/>
<id>5be030962ebbdcd2d1ac96a4e78c5818ab92e434</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ch80/Task 2 (lua): improve algorithm</title>
<updated>2020-10-01T20:31:05+00:00</updated>
<author>
<name>Tyler Wardhaugh</name>
<email>tyler.wardhaugh@gmail.com</email>
</author>
<published>2020-10-01T17:18:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=f710b934d57ead36f286d46027b6f427f8efbd12'/>
<id>f710b934d57ead36f286d46027b6f427f8efbd12</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ch80/Task 2 (clj): improve algorithm</title>
<updated>2020-10-01T20:31:05+00:00</updated>
<author>
<name>Tyler Wardhaugh</name>
<email>tyler.wardhaugh@gmail.com</email>
</author>
<published>2020-10-01T17:18:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=86de64b235e0caf3191db46a5885550ffbf93036'/>
<id>86de64b235e0caf3191db46a5885550ffbf93036</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ch80/Task 1 (clj): add third algorithm</title>
<updated>2020-10-01T20:31:05+00:00</updated>
<author>
<name>Tyler Wardhaugh</name>
<email>tyler.wardhaugh@gmail.com</email>
</author>
<published>2020-10-01T17:18:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=6ee7fd41be52d089f3aff1a9f211da73565ad35a'/>
<id>6ee7fd41be52d089f3aff1a9f211da73565ad35a</id>
<content type='text'>
Also add benchmarking for this newest algorithm.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also add benchmarking for this newest algorithm.
</pre>
</div>
</content>
</entry>
<entry>
<title>Ch80: add Lua solutions</title>
<updated>2020-10-01T06:00:37+00:00</updated>
<author>
<name>Tyler Wardhaugh</name>
<email>tyler.wardhaugh@gmail.com</email>
</author>
<published>2020-10-01T05:56:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=9f221c40fce21616bca718b77baede972affd2a9'/>
<id>9f221c40fce21616bca718b77baede972affd2a9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ch80/Task 1: handle sequences without gaps</title>
<updated>2020-09-29T20:15:51+00:00</updated>
<author>
<name>Tyler Wardhaugh</name>
<email>tyler.wardhaugh@gmail.com</email>
</author>
<published>2020-09-29T20:11:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=0ecd59b7ec571bbdf86f7b6add1ed82750bc853f'/>
<id>0ecd59b7ec571bbdf86f7b6add1ed82750bc853f</id>
<content type='text'>
The smallest positive integer for the sequence [1 2 3 4] is 5 (i.e., 1 +
the maximum).

Add a test to check for this.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The smallest positive integer for the sequence [1 2 3 4] is 5 (i.e., 1 +
the maximum).

Add a test to check for this.
</pre>
</div>
</content>
</entry>
<entry>
<title>Ch80/Task 1: introduce a more efficient algorithm</title>
<updated>2020-09-29T20:14:14+00:00</updated>
<author>
<name>Tyler Wardhaugh</name>
<email>tyler.wardhaugh@gmail.com</email>
</author>
<published>2020-09-29T20:14:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=93e474b336455bc3068af2108bc9762fe5dc08d7'/>
<id>93e474b336455bc3068af2108bc9762fe5dc08d7</id>
<content type='text'>
Constructing a set is elegant but not memory-efficient when dealing with
large numbers.

Add benchmarking to demonstrate the difference.

Also, change the original algorithm (and add a test) to ensure 1 is
returned when no positive integers are provided.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Constructing a set is elegant but not memory-efficient when dealing with
large numbers.

Add benchmarking to demonstrate the difference.

Also, change the original algorithm (and add a test) to ensure 1 is
returned when no positive integers are provided.
</pre>
</div>
</content>
</entry>
<entry>
<title>Ch80: Task 2</title>
<updated>2020-09-28T22:47:45+00:00</updated>
<author>
<name>Tyler Wardhaugh</name>
<email>tyler.wardhaugh@gmail.com</email>
</author>
<published>2020-09-28T22:25:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=3db826ef9f6b2b73586d75f7b89c010a079c40a5'/>
<id>3db826ef9f6b2b73586d75f7b89c010a079c40a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ch80: Task 1</title>
<updated>2020-09-28T22:47:40+00:00</updated>
<author>
<name>Tyler Wardhaugh</name>
<email>tyler.wardhaugh@gmail.com</email>
</author>
<published>2020-09-28T22:24:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=73b8c8151d43eb4f6283c0bb93851d204cdee6ee'/>
<id>73b8c8151d43eb4f6283c0bb93851d204cdee6ee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ch80: prep files for new challenge</title>
<updated>2020-09-28T18:23:20+00:00</updated>
<author>
<name>Tyler Wardhaugh</name>
<email>tyler.wardhaugh@gmail.com</email>
</author>
<published>2020-09-28T18:16:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=5150537e4ba1196c1f10f76e726a8f3a2fcd8598'/>
<id>5150537e4ba1196c1f10f76e726a8f3a2fcd8598</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
