<feed xmlns='http://www.w3.org/2005/Atom'>
<title>github/perlweeklychallenge-club.git/challenge-097/abigail/t, 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>Swap the role of sections and section length (size).</title>
<updated>2021-01-30T16:51:27+00:00</updated>
<author>
<name>Abigail</name>
<email>abigail@abigail.be</email>
</author>
<published>2021-01-30T16:01:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=7de0601266583815c0bfb3f00cb71672997b19c3'/>
<id>7de0601266583815c0bfb3f00cb71672997b19c3</id>
<content type='text'>
We initially implemented the algorithm where the number of sections
is passed in as a parameter. However, it's not the number of sections,
it's the length of each section.

This was an easy fix, as the algorithm is pretty symmetric.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We initially implemented the algorithm where the number of sections
is passed in as a parameter. However, it's not the number of sections,
it's the length of each section.

This was an easy fix, as the algorithm is pretty symmetric.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix example.</title>
<updated>2021-01-27T18:36:25+00:00</updated>
<author>
<name>Abigail</name>
<email>abigail@abigail.be</email>
</author>
<published>2021-01-27T18:36:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=b95ad395cd59d90b57ac6da0b05e31aa56bbf63a'/>
<id>b95ad395cd59d90b57ac6da0b05e31aa56bbf63a</id>
<content type='text'>
The right option to mimic the given example is -s 2, not -s 4.
(But curiously, this leads to the same answer).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The right option to mimic the given example is -s 2, not -s 4.
(But curiously, this leads to the same answer).
</pre>
</div>
</content>
</entry>
<entry>
<title>Add another test case.</title>
<updated>2021-01-27T18:34:13+00:00</updated>
<author>
<name>Abigail</name>
<email>abigail@abigail.be</email>
</author>
<published>2021-01-27T18:34:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=f3ee86defcd62c62d88313aeae6d01823b613d81'/>
<id>f3ee86defcd62c62d88313aeae6d01823b613d81</id>
<content type='text'>
In particular, a case where the target string is different from
all the strings:

    1110
    1101
    1011

If we flip all the 0 bits to 1, all the strings will be equal (1111),
but 1111 is not one of the given strings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In particular, a case where the target string is different from
all the strings:

    1110
    1101
    1011

If we flip all the 0 bits to 1, all the strings will be equal (1111),
but 1111 is not one of the given strings.
</pre>
</div>
</content>
</entry>
<entry>
<title>Split example for part 2</title>
<updated>2021-01-26T18:13:48+00:00</updated>
<author>
<name>Abigail</name>
<email>abigail@abigail.be</email>
</author>
<published>2021-01-26T18:13:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=f4e861bc27167c67ebb9bbda9e03884778cdd525'/>
<id>f4e861bc27167c67ebb9bbda9e03884778cdd525</id>
<content type='text'>
Since they need different command line options
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since they need different command line options
</pre>
</div>
</content>
</entry>
<entry>
<title>Use option -s (shift), instead of -t.</title>
<updated>2021-01-26T11:07:41+00:00</updated>
<author>
<name>Abigail</name>
<email>abigail@abigail.be</email>
</author>
<published>2021-01-26T00:53:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=3a68dc14c70c709ea8097e98e38931ef93e643af'/>
<id>3a68dc14c70c709ea8097e98e38931ef93e643af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use an option to determine the shift size.</title>
<updated>2021-01-26T11:07:41+00:00</updated>
<author>
<name>Abigail</name>
<email>abigail@abigail.be</email>
</author>
<published>2021-01-26T00:13:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=1889deddca521e1aa013d53a749c693c6589deba'/>
<id>1889deddca521e1aa013d53a749c693c6589deba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Examples</title>
<updated>2021-01-26T11:07:41+00:00</updated>
<author>
<name>Abigail</name>
<email>abigail@abigail.be</email>
</author>
<published>2021-01-25T19:00:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/perlweeklychallenge-club.git/commit/?id=2f7c1b777992058c0b7d4082435e2db27253a871'/>
<id>2f7c1b777992058c0b7d4082435e2db27253a871</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
