refactor readme

This commit is contained in:
2024-06-28 09:37:01 -05:00
parent 3ae5445efe
commit a72ed3f830
2 changed files with 64 additions and 26 deletions

View File

@@ -113,6 +113,16 @@ def transmit_alphabet(
(alphabet_phase2 << ((~cdi1 << mdpi2) < (mdo3 << cdo1_cdo2))) ^
((((ceda ^ cpda ^ meda) < mdo1) << ((mdi1 < mdo2) << (mdpi2 < mdo3))) < cdo1_cdo2)
)
alphabet_phase3 = (
(alphabet_phase2 << ((~cdi1 << mdpi2) < (mdo3 << cdo1_cdo2))) ^
(
(
((ceda ^ cpda ^ meda) < (mdo1 << cdo1_cdo2)) << ((mdi1 < (mdo2 << cdo1_cdo2)) << (mdpi2 < (mdo3 << cdo1_cdo2)))
)
)
)
return alphabet_phase3