<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Data structures :: CS1 course</title><link>https://robark.gitlab.io/data_structures/index.html</link><description>Chapter 6 Lists, Strings, Tuples, Dictionaries</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Thu, 29 Oct 2020 19:15:29 +0000</lastBuildDate><atom:link href="https://robark.gitlab.io/data_structures/index.xml" rel="self" type="application/rss+xml"/><item><title>Hangman</title><link>https://robark.gitlab.io/data_structures/hangman/index.html</link><pubDate>Tue, 20 Oct 2020 19:06:23 +0000</pubDate><guid>https://robark.gitlab.io/data_structures/hangman/index.html</guid><description>Lesson 23: Hangman Notice this solution did not use any functions. Try to rewrite/re-organize the solution to incorporate functions where/when appropriate.</description></item><item><title>Craps</title><link>https://robark.gitlab.io/data_structures/craps/index.html</link><pubDate>Wed, 21 Oct 2020 19:14:03 +0000</pubDate><guid>https://robark.gitlab.io/data_structures/craps/index.html</guid><description>Lesson 24: Craps simulation</description></item><item><title>Lists</title><link>https://robark.gitlab.io/data_structures/lists/index.html</link><pubDate>Thu, 22 Oct 2020 19:47:23 +0000</pubDate><guid>https://robark.gitlab.io/data_structures/lists/index.html</guid><description>Lesson 25 - Lists (Important Lesson) This is a long lesson ~ 80min. I recommend watching this video in two separate sittings so as not to be overwhelmed by too much at once.</description></item><item><title>Sort</title><link>https://robark.gitlab.io/data_structures/sort/index.html</link><pubDate>Mon, 26 Oct 2020 19:50:01 +0000</pubDate><guid>https://robark.gitlab.io/data_structures/sort/index.html</guid><description>Lesson 26: Selection Sort (Not in-place) Lesson 27: Selection Sort (in-place), 2D lists, Tuples, Dictionaries intro I forgot to mention in the video you can change an existing list L into a tuple with the following python code</description></item><item><title>Dictionaries</title><link>https://robark.gitlab.io/data_structures/dicts/index.html</link><pubDate>Wed, 28 Oct 2020 18:42:13 +0000</pubDate><guid>https://robark.gitlab.io/data_structures/dicts/index.html</guid><description>Lesson 28: Dictionaries and Sorting</description></item><item><title>Sets</title><link>https://robark.gitlab.io/data_structures/sets/index.html</link><pubDate>Thu, 29 Oct 2020 19:15:29 +0000</pubDate><guid>https://robark.gitlab.io/data_structures/sets/index.html</guid><description>Lesson 29: Sets and string .join() and .split() One example which the video missed was using .split without arguments. It defaults to a space ’ ‘. So
s='bird dog cat' print( s.split() ) would output
['bird','dog','cat']</description></item></channel></rss>