Bandwagoner - improved wording for task 7

Hello. Part 7 of the Bandwagon task: rootForTeam. The instructions state to return true if exactly one of the following is correct, but the tests allow (and require) more than one, ie at least one. Please can be instructions be updated to reflect that it is one or more of the following for true? Thank you. F# on Exercism

Having looked at many teams and matches, you’ve come up with an algorithm. If one of the following is true, you root for that team:

  • The coach’s name is “Gregg Popovich”
  • The coach is a former player
  • The team’s name is the “Chicago Bulls”
  • The team has won 60 or more games
  • The team has more losses than wins

The instructions don’t currently state that exactly one condition must be true. “One of the following is true” means that at least one of the following must be true. However, we can probably make this more explicit with something like "If any of the following are true, you root for the team:".

1 Like