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
import sys, math, re | |
# Auto-generated code below aims at helping you parse | |
# the standard input according to the problem statement. | |
def deg2Rad(deg): | |
return deg * (math.pi/180) | |
def transformToFloat(value): | |
result = 0 |
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
import sys, math | |
# Auto-generated code below aims at helping you parse | |
# the standard input according to the problem statement. | |
N = int(raw_input()) | |
lstValue = [] | |
lstSorted = [] | |
ecartDico = [] |
OlderNewer