├── LICENSE ├── README.md ├── algs4 ├── acyclic_sp.go ├── bag.go ├── bellman_ford_sp.go ├── binary_search_st.go ├── binarystdin.go ├── binarystdout.go ├── breadth_first_paths.go ├── bst.go ├── cc.go ├── cycle.go ├── depth_first_order.go ├── depth_first_paths.go ├── depth_first_search.go ├── digraph.go ├── dijkstra_sp.go ├── directed_cycle.go ├── directed_dfs.go ├── directed_edge.go ├── edge.go ├── edge_weighted_digraph.go ├── edge_weighted_directed_cycle.go ├── edge_weighted_graph.go ├── ewd_topological.go ├── graph.go ├── heap.go ├── huffman.go ├── index_min_pq.go ├── insertion.go ├── kmp.go ├── kosaraju_scc.go ├── kruskal_mst.go ├── lazy_prim_mst.go ├── linear_probing_hash_st.go ├── lsd.go ├── lzw.go ├── max_pq.go ├── merge.go ├── min_pq.go ├── msd.go ├── nfa.go ├── prim_mst.go ├── queue.go ├── quick.go ├── quick3_string.go ├── quick_3way.go ├── red_black_bst.go ├── selection.go ├── separate_chaining_hash_st.go ├── sequential_search_st.go ├── shell.go ├── sort.go ├── st.go ├── stack.go ├── symbol_digraph.go ├── symbol_graph.go ├── topological.go ├── transaction.go ├── trie_st.go ├── tst.go ├── uf.go └── weighted_quickunion_uf.go ├── cmd ├── bag │ └── main.go ├── binarydump │ └── main.go ├── breadth-first-paths │ └── main.go ├── cc │ └── main.go ├── cycle │ └── main.go ├── degrees-of-separation │ └── main.go ├── depth-first-paths │ └── main.go ├── depth-first-search │ └── main.go ├── digraph │ └── main.go ├── dijkstra-sp │ └── main.go ├── directed-cycle │ └── main.go ├── directed-dfs │ └── main.go ├── edge-weighted-digraph │ └── main.go ├── edge-weighted-graph │ └── main.go ├── frequency-counter │ └── main.go ├── graph │ └── main.go ├── heap │ └── main.go ├── huffman │ └── main.go ├── insertion │ └── main.go ├── kmp │ └── main.go ├── kosaraju-scc │ └── main.go ├── kruskal-mst │ └── main.go ├── lazy-prim-mst │ └── main.go ├── lsd │ └── main.go ├── lzw │ └── main.go ├── merge │ └── main.go ├── msd │ └── main.go ├── multiway │ └── main.go ├── nfa │ └── main.go ├── prim-mst │ └── main.go ├── queue │ └── main.go ├── quick │ └── main.go ├── quick3-string │ └── main.go ├── quick3way │ └── main.go ├── selection │ └── main.go ├── shell │ └── main.go ├── stack │ └── main.go ├── symbol-graph │ └── main.go ├── topm │ └── main.go ├── topological │ └── main.go ├── trie-st │ └── main.go ├── tst │ └── main.go ├── uf │ └── main.go └── weighted-quickunion-uf │ └── main.go ├── go.mod ├── linklist └── util.go └── stdin ├── in.go └── stdin.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/README.md -------------------------------------------------------------------------------- /algs4/acyclic_sp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/acyclic_sp.go -------------------------------------------------------------------------------- /algs4/bag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/bag.go -------------------------------------------------------------------------------- /algs4/bellman_ford_sp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/bellman_ford_sp.go -------------------------------------------------------------------------------- /algs4/binary_search_st.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/binary_search_st.go -------------------------------------------------------------------------------- /algs4/binarystdin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/binarystdin.go -------------------------------------------------------------------------------- /algs4/binarystdout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/binarystdout.go -------------------------------------------------------------------------------- /algs4/breadth_first_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/breadth_first_paths.go -------------------------------------------------------------------------------- /algs4/bst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/bst.go -------------------------------------------------------------------------------- /algs4/cc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/cc.go -------------------------------------------------------------------------------- /algs4/cycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/cycle.go -------------------------------------------------------------------------------- /algs4/depth_first_order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/depth_first_order.go -------------------------------------------------------------------------------- /algs4/depth_first_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/depth_first_paths.go -------------------------------------------------------------------------------- /algs4/depth_first_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/depth_first_search.go -------------------------------------------------------------------------------- /algs4/digraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/digraph.go -------------------------------------------------------------------------------- /algs4/dijkstra_sp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/dijkstra_sp.go -------------------------------------------------------------------------------- /algs4/directed_cycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/directed_cycle.go -------------------------------------------------------------------------------- /algs4/directed_dfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/directed_dfs.go -------------------------------------------------------------------------------- /algs4/directed_edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/directed_edge.go -------------------------------------------------------------------------------- /algs4/edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/edge.go -------------------------------------------------------------------------------- /algs4/edge_weighted_digraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/edge_weighted_digraph.go -------------------------------------------------------------------------------- /algs4/edge_weighted_directed_cycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/edge_weighted_directed_cycle.go -------------------------------------------------------------------------------- /algs4/edge_weighted_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/edge_weighted_graph.go -------------------------------------------------------------------------------- /algs4/ewd_topological.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/ewd_topological.go -------------------------------------------------------------------------------- /algs4/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/graph.go -------------------------------------------------------------------------------- /algs4/heap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/heap.go -------------------------------------------------------------------------------- /algs4/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/huffman.go -------------------------------------------------------------------------------- /algs4/index_min_pq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/index_min_pq.go -------------------------------------------------------------------------------- /algs4/insertion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/insertion.go -------------------------------------------------------------------------------- /algs4/kmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/kmp.go -------------------------------------------------------------------------------- /algs4/kosaraju_scc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/kosaraju_scc.go -------------------------------------------------------------------------------- /algs4/kruskal_mst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/kruskal_mst.go -------------------------------------------------------------------------------- /algs4/lazy_prim_mst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/lazy_prim_mst.go -------------------------------------------------------------------------------- /algs4/linear_probing_hash_st.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/linear_probing_hash_st.go -------------------------------------------------------------------------------- /algs4/lsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/lsd.go -------------------------------------------------------------------------------- /algs4/lzw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/lzw.go -------------------------------------------------------------------------------- /algs4/max_pq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/max_pq.go -------------------------------------------------------------------------------- /algs4/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/merge.go -------------------------------------------------------------------------------- /algs4/min_pq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/min_pq.go -------------------------------------------------------------------------------- /algs4/msd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/msd.go -------------------------------------------------------------------------------- /algs4/nfa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/nfa.go -------------------------------------------------------------------------------- /algs4/prim_mst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/prim_mst.go -------------------------------------------------------------------------------- /algs4/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/queue.go -------------------------------------------------------------------------------- /algs4/quick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/quick.go -------------------------------------------------------------------------------- /algs4/quick3_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/quick3_string.go -------------------------------------------------------------------------------- /algs4/quick_3way.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/quick_3way.go -------------------------------------------------------------------------------- /algs4/red_black_bst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/red_black_bst.go -------------------------------------------------------------------------------- /algs4/selection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/selection.go -------------------------------------------------------------------------------- /algs4/separate_chaining_hash_st.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/separate_chaining_hash_st.go -------------------------------------------------------------------------------- /algs4/sequential_search_st.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/sequential_search_st.go -------------------------------------------------------------------------------- /algs4/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/shell.go -------------------------------------------------------------------------------- /algs4/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/sort.go -------------------------------------------------------------------------------- /algs4/st.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/st.go -------------------------------------------------------------------------------- /algs4/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/stack.go -------------------------------------------------------------------------------- /algs4/symbol_digraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/symbol_digraph.go -------------------------------------------------------------------------------- /algs4/symbol_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/symbol_graph.go -------------------------------------------------------------------------------- /algs4/topological.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/topological.go -------------------------------------------------------------------------------- /algs4/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/transaction.go -------------------------------------------------------------------------------- /algs4/trie_st.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/trie_st.go -------------------------------------------------------------------------------- /algs4/tst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/tst.go -------------------------------------------------------------------------------- /algs4/uf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/uf.go -------------------------------------------------------------------------------- /algs4/weighted_quickunion_uf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/algs4/weighted_quickunion_uf.go -------------------------------------------------------------------------------- /cmd/bag/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/bag/main.go -------------------------------------------------------------------------------- /cmd/binarydump/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/binarydump/main.go -------------------------------------------------------------------------------- /cmd/breadth-first-paths/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/breadth-first-paths/main.go -------------------------------------------------------------------------------- /cmd/cc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/cc/main.go -------------------------------------------------------------------------------- /cmd/cycle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/cycle/main.go -------------------------------------------------------------------------------- /cmd/degrees-of-separation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/degrees-of-separation/main.go -------------------------------------------------------------------------------- /cmd/depth-first-paths/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/depth-first-paths/main.go -------------------------------------------------------------------------------- /cmd/depth-first-search/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/depth-first-search/main.go -------------------------------------------------------------------------------- /cmd/digraph/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/digraph/main.go -------------------------------------------------------------------------------- /cmd/dijkstra-sp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/dijkstra-sp/main.go -------------------------------------------------------------------------------- /cmd/directed-cycle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/directed-cycle/main.go -------------------------------------------------------------------------------- /cmd/directed-dfs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/directed-dfs/main.go -------------------------------------------------------------------------------- /cmd/edge-weighted-digraph/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/edge-weighted-digraph/main.go -------------------------------------------------------------------------------- /cmd/edge-weighted-graph/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/edge-weighted-graph/main.go -------------------------------------------------------------------------------- /cmd/frequency-counter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/frequency-counter/main.go -------------------------------------------------------------------------------- /cmd/graph/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/graph/main.go -------------------------------------------------------------------------------- /cmd/heap/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/heap/main.go -------------------------------------------------------------------------------- /cmd/huffman/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/huffman/main.go -------------------------------------------------------------------------------- /cmd/insertion/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/insertion/main.go -------------------------------------------------------------------------------- /cmd/kmp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/kmp/main.go -------------------------------------------------------------------------------- /cmd/kosaraju-scc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/kosaraju-scc/main.go -------------------------------------------------------------------------------- /cmd/kruskal-mst/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/kruskal-mst/main.go -------------------------------------------------------------------------------- /cmd/lazy-prim-mst/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/lazy-prim-mst/main.go -------------------------------------------------------------------------------- /cmd/lsd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/lsd/main.go -------------------------------------------------------------------------------- /cmd/lzw/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/lzw/main.go -------------------------------------------------------------------------------- /cmd/merge/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/merge/main.go -------------------------------------------------------------------------------- /cmd/msd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/msd/main.go -------------------------------------------------------------------------------- /cmd/multiway/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/multiway/main.go -------------------------------------------------------------------------------- /cmd/nfa/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/nfa/main.go -------------------------------------------------------------------------------- /cmd/prim-mst/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/prim-mst/main.go -------------------------------------------------------------------------------- /cmd/queue/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/queue/main.go -------------------------------------------------------------------------------- /cmd/quick/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/quick/main.go -------------------------------------------------------------------------------- /cmd/quick3-string/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/quick3-string/main.go -------------------------------------------------------------------------------- /cmd/quick3way/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/quick3way/main.go -------------------------------------------------------------------------------- /cmd/selection/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/selection/main.go -------------------------------------------------------------------------------- /cmd/shell/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/shell/main.go -------------------------------------------------------------------------------- /cmd/stack/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/stack/main.go -------------------------------------------------------------------------------- /cmd/symbol-graph/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/symbol-graph/main.go -------------------------------------------------------------------------------- /cmd/topm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/topm/main.go -------------------------------------------------------------------------------- /cmd/topological/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/topological/main.go -------------------------------------------------------------------------------- /cmd/trie-st/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/trie-st/main.go -------------------------------------------------------------------------------- /cmd/tst/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/tst/main.go -------------------------------------------------------------------------------- /cmd/uf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/uf/main.go -------------------------------------------------------------------------------- /cmd/weighted-quickunion-uf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/cmd/weighted-quickunion-uf/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/shellfly/algo 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /linklist/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/linklist/util.go -------------------------------------------------------------------------------- /stdin/in.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/stdin/in.go -------------------------------------------------------------------------------- /stdin/stdin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfly/algo/HEAD/stdin/stdin.go --------------------------------------------------------------------------------