Skip to content

Instantly share code, notes, and snippets.

View ZachOBrien's full-sized avatar

Zach OBrien ZachOBrien

  • Boston Dynamics AI Institute
  • Boston, MA
  • 21:56 (UTC -04:00)
  • LinkedIn in/zach-obrien
View GitHub Profile

Keybase proof

I hereby claim:

  • I am zachobrien on github.
  • I am zachobrien (https://keybase.io/zachobrien) on keybase.
  • I have a public key whose fingerprint is D9A4 647E 18A8 FFC4 F82B A2CE 4DF4 F124 E571 B846

To claim this, I am signing this object:

@ZachOBrien
ZachOBrien / Person.java
Last active September 11, 2021 20:16
Person class for general wellness project
import java.util.*;
public class Person {
private int weight, targetWeight, height, age;
private boolean loseWeight, isMan;
public Person(int weight, int targetWeight) {
weight = this.weight;
targetWeight = this.targetWeight;
}