Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
ilianrusev
Jan 13th, 2022
102
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
text
0.22 KB
| None
|
0
0
raw
download
clone
embed
print
report
function solve(arr) {
let sorted = [];
arr = arr.sort((a, b) => a - b);
while (arr.length > 0) {
sorted.push(arr.shift());
sorted.push(arr.pop());
}
return sorted;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
VeriLog | 1 hour ago | 0.37 KB
abe
C# | 1 hour ago | 2.59 KB
Nano_button_led_hc05
C++ | 2 hours ago | 1.50 KB
VanillaAmmoCraftsRecipes.json
JSON | 2 hours ago | 78.72 KB
Untitled
VeriLog | 3 hours ago | 0.10 KB
aks_k9s
Bash | 3 hours ago | 1.71 KB
Personalized Vein Treatment Plans at USA Vein...
HTML | 3 hours ago | 0.59 KB
# tk_subtractive_blend_polygons.py
Python | 4 hours ago | 3.59 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!