Skip to content

Commit

Permalink
Merge pull request #303 from turingschool/2308_beat_box_readme_update
Browse files Browse the repository at this point in the history
update projects page and beat box pages
  • Loading branch information
abdulredd authored Aug 21, 2023
2 parents 69651a4 + d352bb2 commit 7c469f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions module1/projects/beat_box/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ A linked list should be able to do the following:
* Insert elements
* Pop an element from the end
* Push an element onto the beginning
* Remove the (first occurance | all occurances) of an element by data content
* Remove the (first occurrence | all occurrences) of an element by data content
* Remove an element by position
* Add an element at an arbitrary position
* Add an element after a known node
Expand Down Expand Up @@ -100,4 +100,4 @@ Need some help on Linked Lists? You can check out some of the following resource

* [Setup](./setup)
* [Project Requirements](./requirements)
* [Evaluation Rubric](./rubric)
* [Evaluation Rubric](./rubric)
2 changes: 1 addition & 1 deletion module1/projects/beat_box/iteration_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pry(main)> list.head
pry(main)> list.append("doop")

pry(main)> list
#=> #<LinkedList:0x0000000110e383a0 @head=#<Node:0x0000000110e382d8 @data="doop", @next_node=nil>
#=> #<LinkedList:0x0000000110e383a0 @head=#<Node:0x0000000110e382d8 @data="doop", @next_node=nil>>

pry(main)> list.head.data
#=> "doop"
Expand Down
2 changes: 1 addition & 1 deletion module1/projects/beat_box/iteration_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Perfect, we are almost there! Next is to add `find`, `pop` and `includes?` metho

`includes?` gives back true or false whether the supplied value is in the list.

`pop` removes elements the last element from the list.
`pop` removes the last element from the list and returns it.

Expected behavior:

Expand Down
3 changes: 1 addition & 2 deletions module1/projects/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ title: Backend Module 1 Projects

The following projects will be assigned and their completion is required to be promoted to module 2.

* Week 1 (ungraded): * [War or Peace](./war_or_peace)
* Week 1 (ungraded): [Flashcards](./flashcards)
* Week 1-2 (Solo): [Beat Box](./beat_box)
* Week 2-3 (Solo): [The DMV](./dmv)
* Week 3-4 (Paired): [Battleship](./battleship) or [Connect Four](./connect_four)
Expand All @@ -26,7 +26,6 @@ The following projects are not required. Students can use these projects as an o

These projects are listed (roughly) in order of difficulty.

* [Flashcards](./flashcards)
* [Perilous Journey](./perilous_journey)
* [Mastermind](./mastermind)
* [Event Manager](./eventmanager)
Expand Down

0 comments on commit 7c469f2

Please sign in to comment.