Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
resources
/
intentionDescriptions
/
PyConvertLambdaToFunctionIntention
/
before.py.template
blob: fd61cfd7646199c4438343861894701dd1aebc2d [
file
] [
log
] [
blame
]
def
func
(
seq
):
...
newlist
=
reduce
(
lambda
x
,
y
:
(
x
+
y
)/
y
,
seq
)
...