Skip to content

Instantly share code, notes, and snippets.

@wsoczynski
Created March 16, 2013 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wsoczynski/5178414 to your computer and use it in GitHub Desktop.
Save wsoczynski/5178414 to your computer and use it in GitHub Desktop.
public class Sample {
public List<Double> allEvenNumberToSecondPower(List<Integer> input) {
List<Double> result = new LinkedList<Double>();
for (Integer item : input) {
if (item % 2 == 0) {
result.add(Math.pow(item, 2));
}
}
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment