Showing 0-0 of 0 results
# Exercise Title Features Description Platform Keywords
1 Link Nodes: Iteration Algorithm Visualization, Code Tracing Presentation Slideshow introducing the concept of iterating through a linked list. OpenDSA Link Node, Iteration
2 Link Nodes: Delete Algorithm Visualization, Code Tracing Presentation Slideshow introducing the concept of deleting from a linked list. OpenDSA Link Node, Iteration
3 Link Nodes: Insertion Algorithm Visualization, Code Tracing Presentation Slideshow introducing the concept of inserting a new node into a linked list. OpenDSA Link Node, Iteration
4 Iteration with Addition Construct a program that prints the value 8. jsParsons loops, while loop
5 Iteration with Multiplication Construct a program that prints values 1,2,4,8 and finally prints "The end!". jsParsons loops, while loop
6 Iteration Multiplication For Construct a program that prints values 1,2,4,8 and finally prints "The end!". jsParsons for loop
7 JSON ITERATION 1 Write the code that prints the all NFL stats for the superbowl winning teams from the year 2022 to 2025.... PCEX
8 List Iteration Zoo Construct a program that prints out all the animals in the zoo-variable. jsParsons list
9 JSON Iteration 1 Python PredictingFinalResult for demonstrating JSON Iteration 1 QuizPET json, json-iterate
10 JSON ITERATION 1 Write the code that prints the all NFL stats for the superbowl winning teams from the year 2022 to 2025.... PCEX json, json-iterate
11 JSON ITERATION 1 Challenge Write the code that prints the names of all restaurants. You're provided with list of restaurants in json format PCEX json
12 Multidimensional Array Iteration Multidimensional Array Iteration AnnEx 2d arrays, arrays
13 List values and references. Construct a function that add k values to the given list. The added values is k's increment (increment by 1)... jsParsons value vs reference
14 Iterating with Arrays Review Questions Question, Battery CS1-level iterating over arrays review questions. OpenDSA Array, For-Each Loop
15 Iterating with 2D Arrays Review Questions Question, Battery CS1-level interating with 2D arrays review questions. OpenDSA Array
16 Valores y referencias en listas Construye una funcion que agregue valores de k a la lista dada. Los valores agregados son incrementos de k (incrementando... jsParsons list
17 Uppercase international letters Code Completion Your task is to find out what happens when you call the toUpperCase method on strings that contain accented characters... CodeCheck Objects
18 Remove all but first two elements from linked list Code Completion Write a method that removes all but the first two elements from a linked list, using an iterator. You may... CodeCheck Linear Data Structures
19 Add an element after the first and before the last Code Completion Write a method that adds an element after the first and another before the last element of a nonempty linked... CodeCheck Linear Data Structures