Jared Norris hace 6 años
padre
commit
78d015de10
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. BIN
      NormalizeAngle.class
  2. 2
    2
      NormalizeAngle.java

BIN
NormalizeAngle.class Ver fichero


+ 2
- 2
NormalizeAngle.java Ver fichero

4
 public class NormalizeAngle {
4
 public class NormalizeAngle {
5
 
5
 
6
     public Integer normalizeValueUsingModulo(Integer angle){
6
     public Integer normalizeValueUsingModulo(Integer angle){
7
-        return 0;
7
+        return (angle % 360) < 0 ? (360 + (angle % 360)) : (angle % 360);  
8
     }
8
     }
9
 
9
 
10
     public Integer normalizeValueUsingFloorMod(Integer integer){
10
     public Integer normalizeValueUsingFloorMod(Integer integer){
11
-        return 0;
11
+        return Math.floorMod(integer, 360);
12
     }
12
     }
13
 
13
 
14
     public static void main(String[] args){
14
     public static void main(String[] args){