pythonds icon indicating copy to clipboard operation
pythonds copied to clipboard

Problem Solving with Algorithms and Data Structures using Python

Results 28 pythonds issues
Sort by recently updated
recently updated
newest added

Fix Issue #109 Removed the visible br tags in Q-3 and Q-4.

In Question 4 of Section 6.11.3 of the book, there is a tag which is visible

In this page: https://runestone.academy/runestone/books/published/pythonds/SortSearch/TheQuickSort.html in question 4, if you select an incorect answer, it looks like this: ![image](https://user-images.githubusercontent.com/52082790/71043525-7e391280-20f4-11ea-973b-b810ee108528.png) There shouldn't be double backticks by some of the answers. I was...

vector shortBubbleSort(vector avector){ //the vector for bubble sort bool exchanges = true; int passnum = avector.size(); //while vector size is greater than 0 and exchanges = true while (passnum >...

The book seems to be primarily using [pep-498](https://www.python.org/dev/peps/pep-0498/) style strings, but 1.9.1 still uses printf-style formatting.

### Chapter 9, Section 2: Python Lists Revisited The ```last_index``` in this code is tracking one position past the last item in the list. It starts pointing to index 0...

This figure shows a dynamic programming array example, but there's a wrong number (probably a typo) in the array's indexes. See image attached. ![chapter 5 figure 4](https://user-images.githubusercontent.com/2393869/86404334-caf5cc80-bc85-11ea-863d-9bfe0fad8fab.jpg)

bug

**What Course are you in** https://runestone.academy/runestone/books/published/pythonds/Graphs/DiscussionQuestions.html **Describe the bug** The numbering of the questions is wrong (there are 2 number 1s). Also, for the current question 2, is there a...

Hi, In the following text (from section 5.5.2, Collision Resolution, just before figure 11) I think the _1, 3, 5, 7..._ sequence should be _1, 4, 9, 16, 25, 36_....

Error reported in course pythonds on page GettingStartedwithData by user UPS [email protected] In the following code when we print(A) after changing the element in myList - A shows the new...