I hereby claim:
- I am michielboekhoff on github.
- I am michielboekhoff (https://keybase.io/michielboekhoff) on keybase.
- I have a public key whose fingerprint is 5F45 D883 36D7 8E01 62BF F5AC BBB8 45A1 9C78 92C5
To claim this, I am signing this object:
| Sourcing python-remove-tests-dir-hook | |
| Sourcing python-catch-conflicts-hook.sh | |
| Sourcing python-remove-bin-bytecode-hook.sh | |
| Sourcing setuptools-build-hook | |
| Using setuptoolsBuildPhase | |
| Using setuptoolsShellHook | |
| Sourcing pip-install-hook | |
| Using pipInstallPhase | |
| Sourcing python-imports-check-hook.sh | |
| Using pythonImportsCheckPhase |
I hereby claim:
To claim this, I am signing this object:
| _sig = function(H) { | |
| var U = "R3", | |
| m3 = "round", | |
| e3 = "B3", | |
| D3 = "v3", | |
| N3 = "I3", | |
| g3 = "V", | |
| K3 = "toLowerCase", | |
| n3 = "substr", | |
| z3 = "Z", |
| def sum_list(list, sum, counter): | |
| if counter > len(list) - 1: | |
| return sum | |
| return sum_list(list, sum + list[counter], counter + 1) | |
| print(sum_list([1,2,3,4,5], 0, 0)) |