This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 382 B View raw
1from jugulis import Hydreigon 2 3 4@Hydreigon 5def f(a: int, /) -> int: 6 return 0 7 8 9@f.roar 10def f(a: int, /, b: int) -> int: 11 return 1 12 13 14@f.roar 15def f(a: int, /, b: int, *c) -> int: 16 return 2 17 18 19@f.roar 20def f(a: int, /, b: int, *c, d: int) -> int: 21 return 3 22 23 24@f.roar 25def f(a: int, /, b: int, *c, d: int, **e) -> int: 26 return 4 27 28 29print(f(""))