Skip to content

Skunkworks1983/Skunkworks-code-exercises

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skunkworks-code-exercises

This repo contains a number of programming exercises of various difficulty levels. The following exercises exist here:

robotInventory

Coding practice with arrays, loops, conditionals, and strings. Students will work on the basics of C++ or Java while making a program to track what parts are present on a robot.

Difficulty: ⭐

sudoku

More coding practice with arrays and loops, and an introduction to classes. Students will learn about iterating over more complex data structures and about the difference between class scope and local scope as they implement the classic logic puzzle.

Difficulty: ⭐⭐

linkedList

Coding and design practice with classes and pointers. Students will learn about dealing with references and designing object-oriented code as they solve a canonical programming problem. This exercise also serves as an introduction to dynamic data structures.

Difficulty: ⭐⭐

ghost

A competitive introduction to AI. Students will learn about file I/O and designing data structures for performance while creating bots to play a word game.

Difficulty: ⭐⭐

PIDDebug

Debugging practice using simulated PID controllers, encoders, and motors. Students will solve a variety of common compile errors, runtime crashes and logic mistakes while fixing the supplied broken program. Students will be taught about basic debugger features to help with this project. The fully-working program is a useful tool for learning about and examining the functionality of PID controllers.

Difficulty: ⭐⭐⭐


For Java with IntelliJ, setup for all of the contained exercises is simple and uniform: just import the project from Git (File > New > Project from Version Control), then set the project SDK to a Java 11 JDK (File > Project Structure > Project SDK). Each exercise is a separate module.

For C++, Windows with MinGW is supported. (TODO: write instructions for C++ IDE setup)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 96.6%
  • Java 1.8%
  • C 1.4%
  • Other 0.2%