Related changes
← FFFF
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
29 November 2025
| m 21:25 | User:RainbowDash diffhist +51 RainbowDash talk contribs | ||||
| 21:18 | Upload log RainbowDash talk contribs uploaded File:Simplefsm.png (Fsm diagram for FFFF) | ||||
| N 20:13 | FFFF/Implementation diffhist +2,831 RainbowDash talk contribs (Created page with "This is an implementation of FFFF in Python by User:RainbowDash. <pre> from fractions import Fraction import sys def reduce_pair(a, b=None): """Convert inputs to Fraction, optionally divide by b, return as [numerator, denominator].""" if isinstance(a, (list, tuple)) and len(a) == 2: f = Fraction(a[0], a[1]) else: f = Fraction(a) if b is None: return [f.numerator, f.denominator] if isinstance(b, (list, tuple)):...") | ||||