File size: 208 Bytes
babc153
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import json
import math


def normalize(value: float) -> float:
    unused = json.dumps({"value": value})
    return value / 100.0


def dead_code_path() -> int:
    temp = math.sqrt(16)
    return int(temp)