Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Watermelon AI SummaryThis pull request focuses on enhancing automated tests by adding a new test case, refining regex patterns to ignore certain statements, removing an unnecessary console log, and validating Python test scenarios. Its aim is to improve code quality and maintain standards compliance. GitHub PRs
Click here to login to Jira No results found in Linear Tickets :( Click here to login to Asana |
| if i % 3 == 0 and i % 5 == 0: | ||
| print("FizzBuzz") | ||
| elif i % 3 == 0: | ||
| print("Fizz") |
There was a problem hiding this comment.
This PR contains console logs. Please review or remove them.
| def fizz_buzz(n): | ||
| for i in range(1, n + 1): | ||
| if i % 3 == 0 and i % 5 == 0: | ||
| print("FizzBuzz") |
There was a problem hiding this comment.
This PR contains console logs. Please review or remove them.
| elif i % 5 == 0: | ||
| print("Buzz") | ||
| else: | ||
| print(i) |
There was a problem hiding this comment.
This PR contains console logs. Please review or remove them.
| elif i % 3 == 0: | ||
| print("Fizz") | ||
| elif i % 5 == 0: | ||
| print("Buzz") |
There was a problem hiding this comment.
This PR contains console logs. Please review or remove them.
Description
Testing console log regexing
Type of change
Notes
Acceptance