From 94ce9722e28f7c7fd5ed2dfa5793c6624fc965d4 Mon Sep 17 00:00:00 2001 From: Sylvia Blaho Date: Thu, 11 Apr 2024 20:38:18 +0200 Subject: [PATCH] add study material credits to README #4 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index e9df0be..d091a12 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,13 @@ Click **View** under the message, and a new tab will appear with your deployed a ## Credits +The following resources were used to learn/double check general, atomic functionalities/syntax: + - [Copy list so it can be changed without affecting the original list](https://stackoverflow.com/a/25004389) - [Remove item from list](https://www.w3schools.com/python/python_lists_remove.asp) - [Docstring conventions](https://peps.python.org/pep-0257/) +- [Get combinations of items from a list](https://stackoverflow.com/a/16603347) +- [`itertools` package documentation](https://docs.python.org/3/library/itertools.html#itertools.combinations) +- [Add list items](https://www.w3schools.com/python/python_lists_add.asp) +- [Remove specified item from a list](https://www.w3schools.com/python/python_lists_remove.asp) +- [Docstring conventions](https://peps.python.org/pep-0257/)