diff --git a/README.md b/README.md index 3958677..a9e41d6 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,6 @@ There is a little difference between __arguments__ and __parameters__: ## Higher-Order Functions (HOF) A function that takes a function as an argument and/or returns a function, basically we can treat functions as a value. -In Python every function/method is a Higher-Order Function. The functions like `reduce`, `map` and `filter` are good examples of __HOF__, they receive a function as their first argument. ```python