Replace Travis CI mentions with GitHub actions (#5751)

This commit is contained in:
Maxim Smolskiy
2021-11-03 00:28:09 +03:00
committed by GitHub
parent 60ad32920d
commit 37bc6bdebf
3 changed files with 6 additions and 7 deletions

View File

@@ -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)