Skip to content

Instantly share code, notes, and snippets.

@yozamacs
yozamacs / salespath.go
Created September 16, 2019 20:17
PRAMP sales path cheapest cost problem
package main
type Node struct {
cost int
parent *Node
children []*Node
}
// linked list
// 0->5->4
@yozamacs
yozamacs / keybase.md
Created July 22, 2019 16:18
keybase identity proof

Keybase proof

I hereby claim:

  • I am yozamacs on github.
  • I am maryum (https://keybase.io/maryum) on keybase.
  • I have a public key whose fingerprint is DF1E 3B2D 1672 069A 092C CC98 7DAD 6759 4099 B79F

To claim this, I am signing this object:

@yozamacs
yozamacs / keybase.md
Created February 22, 2016 23:11
Keybase ID

Keybase proof

I hereby claim:

  • I am yozamacs on github.
  • I am maryum (https://keybase.io/maryum) on keybase.
  • I have a public key whose fingerprint is C32A A125 BD06 F639 2255 6987 676D 73C1 954C 8EE4

To claim this, I am signing this object:

public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}