Skip to content

Instantly share code, notes, and snippets.

/**
* 犬を表すクラスです。
*/
public class Dog {
/**
* 名前。
*/
private String name;
/**
* 鳴く回数。
@reinana
reinana / gist:d063963881591b4268d8ce27399976f5
Last active September 6, 2020 05:57
stackCaluculation
class Node:
def __init__(self,data):
self.data = data
self.next = next
class Stack:
def __init__(self):
self.head = None
self.next = None