Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function solve(input) {
- console.log(input[0] + input[input.length - 1]);
- }
- Или:
- function solve(input) {
- console.log(input.shift() + input.pop());
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement