Skip to content
This repository was archived by the owner on Sep 12, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

-----------------

### 3/26/2023

* 7.04 - Fixed broken example code link for lab (similar to #400)

-----------------

### 5/16/2022

* 7.05 - Fixed broken sample code link for project (Issues #380 and #398)
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@

-----------------

### 3/26/2023

* 7.04 - Fixed broken example code link for lab (similar to #400)

-----------------

### 5/16/2022

* 7.05 - Fixed broken sample code link for project (Issues #380 and #398)
Expand Down
4 changes: 1 addition & 3 deletions docs/units/7_unit/04_lesson/lab.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

## Overview

Given the following [Sample Code], practice using inheritance to create specific child classes for different types of `Pokemon`.
Given the following [Sample Code](https://github.com/TEALSK12/2nd-semester-introduction-to-computer-science/blob/master/units/7_unit/04_lesson/example.py), practice using inheritance to create specific child classes for different types of `Pokemon`.

### Create the three child classes below

Expand Down Expand Up @@ -43,6 +43,4 @@
isinstance(my_pet, Dog) # returns false
```

[Sample Code]: https://teals-introcs.gitbooks.io/2nd-semester-introduction-to-computer-science-pri/content/units/7_unit/04_lesson/example.py

<!-- Markdeep: --><style class="fallback">body{visibility:hidden;white-space:pre;font-family:monospace}</style><script src="https://casual-effects.com/markdeep/latest/markdeep.min.js"></script><script>window.alreadyProcessedMarkdeep||(document.body.style.visibility="visible")</script>
4 changes: 1 addition & 3 deletions units/7_unit/04_lesson/lab.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Overview

Given the following [Sample Code], practice using inheritance to create specific child classes for different types of `Pokemon`.
Given the following [Sample Code](https://github.com/TEALSK12/2nd-semester-introduction-to-computer-science/blob/master/units/7_unit/04_lesson/example.py), practice using inheritance to create specific child classes for different types of `Pokemon`.

### Create the three child classes below

Expand Down Expand Up @@ -33,5 +33,3 @@ my_pet = Pet()
isinstance(my_pet, Pet) # returns true
isinstance(my_pet, Dog) # returns false
```

[Sample Code]: https://teals-introcs.gitbooks.io/2nd-semester-introduction-to-computer-science-pri/content/units/7_unit/04_lesson/example.py