feat: enable new langs (#42491)

Enable italian and portuguese
This commit is contained in:
Nicholas Carrigan (he/him)
2021-06-15 00:49:18 -07:00
committed by GitHub
parent d8d6d20793
commit f25e3e69f8
3301 changed files with 423168 additions and 6 deletions

View File

@ -0,0 +1,46 @@
---
id: 5900f5481000cf542c51005a
title: 'Problem 475: Music festival'
challengeType: 5
forumTopicId: 302152
dashedName: problem-475-music-festival
---
# --description--
12n musicians participate at a music festival. On the first day, they form 3n quartets and practice all day.
It is a disaster. At the end of the day, all musicians decide they will never again agree to play with any member of their quartet.
On the second day, they form 4n trios, each musician avoiding his previous quartet partners.
Let f(12n) be the number of ways to organize the trios amongst the 12n musicians. You are given f(12) = 576 and f(24) mod 1 000 000 007 = 509089824.
Find f(600) mod 1 000 000 007.
# --hints--
`euler475()` should return 75780067.
```js
assert.strictEqual(euler475(), 75780067);
```
# --seed--
## --seed-contents--
```js
function euler475() {
return true;
}
euler475();
```
# --solutions--
```js
// solution required
```