Created
March 30, 2011 05:41
-
-
Save corani/893918 to your computer and use it in GitHub Desktop.
Map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| List<Integer> result = new ArrayList<Integer>(); | |
| for (Integer value : items) { | |
| result.add(Math.pow(value, 2)); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| result = map(lambda x: x ** 2, items) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT value * value FROM items |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment