15 lines
209 B
Markdown
15 lines
209 B
Markdown
### functionName
|
|
|
|
Describe briefly what the function does
|
|
|
|
Explain your method and the functions used.
|
|
|
|
``` python
|
|
def functionName(args):
|
|
# code
|
|
return 0
|
|
```
|
|
|
|
``` python
|
|
functionName(val) # result
|
|
``` |