isaacg1 / pyth

Pyth, an extremely concise language. Try it here:
https://pyth.herokuapp.com/
MIT License
263 stars 57 forks source link

2D array rotation #235

Closed DonaldTsang closed 7 years ago

DonaldTsang commented 7 years ago

def rotate_clockwise(x): [list(y) for y in zip(*x[::-1])]

Steven-Hewitt commented 7 years ago

C_ in Pyth. I see no reason to make this a builtin.