BOJ / 5635번 / 생일 [Go][Python3]
👩🏻💻 문제 5635번: 생일 어떤 반에 있는 학생들의 생일이 주어졌을 때, 가장 나이가 적은 사람과 가장 많은 사람을 구하는 프로그램을 작성하시오. www.acmicpc.net ✍🏻 풀이 🎨 Go // https://www.acmicpc.net/problem/5635 package main import ( "bufio" "fmt" "os" "sort" ) type studentFormat struct { name string day int month int year int } func main() { reader := bufio.NewReader(os.Stdin) writer := bufio.NewWriter(os.Stdout) defer writer.Flush() var n int fmt.Fscan..
dev/algorithm
2020. 12. 27. 21:00