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