Files
misc/scripts/math
2026-02-04 23:34:37 -08:00

11 lines
301 B
Bash
Executable File

#!/bin/bash
POWER_SET="{{} {1} {2} {3} {4} {1,2} {1,3} {1,4} {2,3} {2,4} {3,4} {1,2,3} {1,2,4} {1,3,4} {2,3,4} {1,2,3,4}}"
SUBSETS="1 2 3 4"
for element in $POWER_SET; do
for sub in $SUBSETS; do
if [[ $element == *$sub* ]]; then
echo "element containing $sub: $element"
fi
done
done