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
| __author__ = "Jose Maria Zambrana Arze " | |
| __email__ = "contact@josezambrana.com" | |
| import unittest | |
| import math | |
| def absDistinct ( A ): | |
| """ return count of unique abs values in A """ | |
| res = {} | |
| for n in A: |
NewerOlder