aoc2021/utils.jl

4 lines
90 B
Julia
Raw Normal View History

2021-12-22 10:33:30 +00:00
function non_empty_lines(path::String)
Iterators.filter(!isempty, eachline(path))
end