Replace Travis CI mentions with GitHub actions (#5751)
This commit is contained in:
@@ -36,9 +36,8 @@ def solution():
|
||||
"""Returns the value of the first triangle number to have over five hundred
|
||||
divisors.
|
||||
|
||||
# The code below has been commented due to slow execution affecting Travis.
|
||||
# >>> solution()
|
||||
# 76576500
|
||||
>>> solution()
|
||||
76576500
|
||||
"""
|
||||
return next(i for i in triangle_number_generator() if count_divisors(i) > 500)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user