remove aoc solutions
This commit is contained in:
11
examples/euler/euler_07.zr
Normal file
11
examples/euler/euler_07.zr
Normal file
@@ -0,0 +1,11 @@
|
||||
func main[] : i64
|
||||
found := 0
|
||||
|
||||
i := 1
|
||||
while true
|
||||
if i->is_prime()
|
||||
found += 1
|
||||
if found == 10001
|
||||
io.println_i64(i)
|
||||
break
|
||||
i += 1
|
||||
Reference in New Issue
Block a user