Create 5 - Sorting Scramble.py

This commit is contained in:
Lukas Baumann 2021-02-18 21:09:02 +01:00 committed by GitHub
parent b0e8edd70a
commit 38eecff3d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,9 @@
tmp = max(x, y)
x = min(x, y)
y = tmp
tmp = max(y, z)
y = min(y, z)
z = tmp
tmp = max(x, y)
x = min(x, y)
y = tmp