Cake Cutting
A challenge by
Bulmenisaurus
Description
The year is 2035. Cake cutting is the last profession humans have left, everything else has been replaced by AI. Your job is to change that. Given a cake on STDIN and a series of cutting instructions, output the resulting cake, with slices separated.
You will be given a cake followed by a series of instructions in either the form x=…
or y=…
. The coordinates are 0 indexed for the spaces in between that row or column. For example, x=0 would indicate that you need to slice between the 1st and 2nd columns of the cake.
Input: ### ### ### x=0 y=0 First step: (x=0) # ## # ## # ## Second step: (y=0) # ## # ## # ##
The cake is separated after each cut. If a cut lands between two slices, that indicates that the customer wants more space between those two slices:
Input: | | |||_ x=0 y=0 y=0 Expected output: | | | ||_
Leaderboard
Author | Score | ||
---|---|---|---|
#1 |
|
Bulmenisaurus | 143 |
#2 |
|
hallvabo | 145 |