Skip to content

Instantly share code, notes, and snippets.

View pbattin's full-sized avatar
💭
Developing 🤓

Prestó pbattin

💭
Developing 🤓
  • SC
View GitHub Profile
@pbattin
pbattin / gist:75fc5aa933543f56ce63b98ce0a7bc8b
Created February 23, 2017 19:47 — forked from spotco/gist:5317556
Sound file note detection using JTransforms (java)
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
@pbattin
pbattin / Reusing_Classes_1.md
Created January 18, 2017 18:09 — forked from DavidGinzberg/Reusing_Classes_1.md
Reusing Classes Labs

Rotate Array

Objectives

  1. To demonstrate your understanding of objects and functions
  2. To demonstrate your understanding of controlling execution
  3. To demonstrate your understanding of access control
  4. To demonstrate your understanding of reusing classes

#Sum of the Numbers

##Objectives

  1. To demonstrate your understanding of objects
  2. To demonstrate your understanding of operators
  3. To demonstrate your understanding of user input/output

##Overview