Ẇa6ḌạÐṂ⁸Ṫ
Eine monadische Verbindung.
Probieren Sie es online! - Fast kein Punkt in diesem Link (siehe unten)!
Wie?
Im Stil eines echten Golfspielers ist dies wirklich ineffizient - es ist die 60er-Jahre-Pause bei TIO für den 365- Testfall! Vor Ort endet dies in 37s.
Ẇa6ḌạÐṂ⁸Ṫ - Main link: n
Ẇ - all sublists - this has an implicit make_range on it's input
- so, for example, an input of 3 yields [[1],[2],[3],[1,2],[2,3],[1,2,3]]
- the important things are: that it contains both a list of the length of the
- decimal number, and a list 1 shorter; and that it's lists only contain
- non-zero numbers and are monotonically increasing in length.
6 - literal 6
a - and (vectorises), this changes all the values to 6s
- so, the example above becomes [[6],[6],[6],[6,6],[6,6],[6,6,6]]
Ḍ - convert to decimal (vectorises) [ 6, 6,, 6, 66, 66, 666 ]
⁸ - link's right argument, n
ÐṂ - filter keep those with minimal:
ạ - absolute difference (for 366 this keeps 66 AND 666; same goes for 3666; etc.)
Ṫ - tail - get the rightmost result (for 366 keeps 666, since it's longer)
Ein Patch, mit dem derselbe Algorithmus für 365 und 366 auf TIO innerhalb der 60er-Grenze ausgeführt werden kann , soll die implizite Vektorisierung von Ḍ
with Ẇa6Ḍ€ạÐṂ⁸Ṫ
( versuchen Sie das ) vermeiden. Dies wird jedoch jetzt bei einer Eingabe von 999 ( Triangle (999) nur fehlschlagen 499.500, aber jedes ist eine Liste von Ganzzahlen, was insgesamt Tetraeder (999) = 166.666.500 Ganzzahlen ergibt (nicht speichereffizient, zumindest in Python).