- https://codegolf.stackexchange.com/q/55422/8478 Hello, World!
- https://codegolf.stackexchange.com/q/57617/8478 Is this number prime?
- https://codegolf.stackexchange.com/q/62732/8478 Implement a Truth-Machine
- https://codegolf.stackexchange.com/q/62230/8478 Simple cat program
- https://codegolf.stackexchange.com/q/63834/8478 Count up forever
- https://codegolf.stackexchange.com/q/93441/8478 Print all integers
- https://codegolf.stackexchange.com/q/84260/8478 Add two numbers
- https://codegolf.stackexchange.com/q/106182/8478 Multiply two numbers
- https://codegolf.stackexchange.com/q/101638/8478 Shortest code to produce non-deterministic output
- https://codegolf.stackexchange.com/q/13152/8478 Shortest code to produce infinite output
Kansas City Shuffle: Golf a transcendental number by xnor
Will be rewarded by totallyhuman.
Overall best challenge: Formic Functions: Queen of the Hill by trichoplax
This Gist will contain challenges of varying difficulty, involving features that are somewhat specific to 05AB1E, for people to try out. The contents of this will then be added to The 05AB1E Lounge, where they will have their own tab.
- Given a list of integers, return the longest prefix with the maximal mode. In case two or more elements of a prefix occur the maximal number of times, select the highest one. Current record: 7 bytes. Test cases:
[-5, -3, -5, 3, 6, -5] -> [-5, -3] [5, 3, 9, 4, 4, 9, 5, 6, 6, 4] -> [5, 3, 9, 4, 4, 9, 5, 6, 6] [5, 9, 3, 7, 3, 9, 4, 3, 0, 8, 4] -> [5, 9, 3, 7, 3, 9, 4]