This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% LaTeX Template for short student reports. | |
% Citations should be in bibtex format and go in references.bib | |
\documentclass[a4paper, 11pt]{article} | |
\usepackage[top=3cm, bottom=3cm, left = 2cm, right = 2cm]{geometry} | |
\geometry{a4paper} | |
\usepackage[utf8]{inputenc} | |
\usepackage{textcomp} | |
\usepackage{graphicx} | |
\usepackage{amsmath,amssymb} | |
\usepackage{bm} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Set struct { | |
list map[int]struct{} //empty structs occupy 0 memory | |
} | |
func (s *Set) Has(v int) bool { | |
_, ok := s.list[v] | |
return ok | |
} |