#177. square56
square56
Background
Description
Given a list of integers, return a list of those numbers squared and the product added to 10, omitting any of the resulting numbers that end in 5 or 6.
Format
Input
Output
Samples
[3 1 4]
[19, 11]
[1]
[11]
[2]
[14]
Limitation
1s, 1024KiB for each test case.