From e42ea90eb4405e701c28698b057dccbe2153bd39 Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 16 Nov 2020 09:27:25 -0600 Subject: [PATCH] all line number changes, README updates --- .vscode/settings.json | 2 +- python/COMMENTS.md | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 01d7645..dd16013 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "python.pythonPath": "A:\\Installations\\Anaconda\\python.exe", + "python.pythonPath": "X:\\Users\\Xevion\\Anaconda3\\python.exe", "python.linting.flake8Enabled": true, "python.linting.enabled": false, "python.linting.pylintEnabled": false, diff --git a/python/COMMENTS.md b/python/COMMENTS.md index ea465ed..ffef266 100644 --- a/python/COMMENTS.md +++ b/python/COMMENTS.md @@ -2,7 +2,7 @@ This page represents all my comments from my solutions currently hosted on [Exercism.io](https://exercism.io/). You can view my profile [here](https://exercism.io/profiles/Xevion). The reason for this is simply to have a place where I can collect my comments, as well as just have some fun with Python and webscraping. Exercise file and exercise submission links will be provided for each and every exercise. -This file is for the **Python** track, contains **55** submissions, **22** of which have comments. This file was built on **25-07-2019** at **02:56:20 UTC**. +This file is for the **Python** track, contains **57** submissions, **24** of which have comments. This file was built on **31-07-2019** at **15:36:13 UTC**. ## Word Count @@ -218,6 +218,12 @@ To this day, the way dictionary and list comprehension works, as in, the order y +## Pig Latin + +[Link to File](./pig-latin/pig_latin.py) | [Link to Submission](https://exercism.io/tracks/python/exercises/pig-latin/solutions/4a3eab6787d64b43af2d7c777df7cf17) + +This one was a rather annoying challenge. Just like Pam Beesly, I despise Pig Latin now. + ## Simple Cipher [Link to File](./simple-cipher/simple_cipher.py) | [Link to Submission](https://exercism.io/tracks/python/exercises/simple-cipher/solutions/6d5485599e744039a9d97ab829528b7f) @@ -254,6 +260,14 @@ If I could make any changes, it would to support upper and lowercase, and then t +## Saddle Points + +[Link to File](./saddle-points/saddle_points.py) | [Link to Submission](https://exercism.io/tracks/python/exercises/saddle-points/solutions/142ada3a5e35437baa24b9bddb78a991) + +Ugh, the problem with exercises like this is you HAVE to specify if you're passing `rows` or `columns` first, in `y, x` or `x, y` format, and most of all, please just let us pass back tuples instead of these dumb dictionaries. + +Oh, and I totally could have made a decision to do list/dictionary comprehension here, I just kinda got wrapped up in the `y, x` or `x, y` stuff. It really trips me out. + ## Twelve Days [Link to File](./twelve-days/twelve_days.py) | [Link to Submission](https://exercism.io/tracks/python/exercises/twelve-days/solutions/1b45c94291dd447d9544ca5670288981)