aboutsummaryrefslogtreecommitdiff
path: root/challenge-191/ealvar3z/python/ch-2.py
diff options
context:
space:
mode:
authorealvar3z <55966724+ealvar3z@users.noreply.github.com>2022-11-17 21:22:58 +0000
committerealvar3z <55966724+ealvar3z@users.noreply.github.com>2022-11-17 21:22:58 +0000
commit391fd8db38048295d87dbd1716d9756546fc0813 (patch)
treee5ddd028803dcdb05a570e735b5ac524152bb058 /challenge-191/ealvar3z/python/ch-2.py
parentc0fd35656b1707cb785e5da2e4c067dcdd6f2aa1 (diff)
downloadperlweeklychallenge-club-391fd8db38048295d87dbd1716d9756546fc0813.tar.gz
perlweeklychallenge-club-391fd8db38048295d87dbd1716d9756546fc0813.tar.bz2
perlweeklychallenge-club-391fd8db38048295d87dbd1716d9756546fc0813.zip
pwc191 Go and Python solutions
Diffstat (limited to 'challenge-191/ealvar3z/python/ch-2.py')
-rw-r--r--challenge-191/ealvar3z/python/ch-2.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/challenge-191/ealvar3z/python/ch-2.py b/challenge-191/ealvar3z/python/ch-2.py
new file mode 100644
index 0000000000..e013d84da8
--- /dev/null
+++ b/challenge-191/ealvar3z/python/ch-2.py
@@ -0,0 +1,39 @@
+#!/usr/bin/env python3
+import unittest
+
+
+class TestSolutionII(unittest.TestCase):
+
+ def cute_list(self, n):
+ bitset_total = 2**n
+ bitset = [[0 for i in range(bitset_total)] for j in range(n+1)]
+ # set the base case
+ bitset[0][0] = 1
+
+ # iterate over all of the positions
+ for i in range(1, n+1):
+ # iterate over all of the subsets
+ for j in range(bitset_total):
+ # iterate over all of the numbers w/in each subset
+ for k in range(n):
+ # for each number in the subset
+ # check if the number exists?
+ visit = (j & (1 << k)) # is the bit set?
+ condition_one_holds = ((k+1) % i == 0)
+ condition_two_holds = (i % (k+1) == 0)
+ if visit and condition_one_holds or condition_two_holds:
+ # if one of these conditions hold, and we have seen the
+ # value, then the list is cute.
+ # Grab the count of what we've seen and return it.
+ # if this bit was set, unset it
+ visited = (j ^ (1 << k))
+ saw_it = bitset[i-1][visited]
+ count = bitset[i][j] = bitset[i][j] + saw_it
+ return count
+
+ def test_cute_list(self):
+ self.assertEqual(self.cute_list(2), 2)
+
+
+if __name__ == "__main__":
+ unittest.main(verbosity=True)