Revision f000ac0c-9bd4-419a-ac4f-b100bfd4b287 - Code Golf Stack Exchange
# [Thunno 2](https://github.com/Thunno/Thunno2) `N`, 11 [bytes](https://github.com/Thunno/Thunno2/blob/main/docs/codepage.md "Thunno 2 codepage")
```
ɦık+Ḋkg×Jn|
```
[Attempt This Online!](https://ato.pxeger.com/run?1=m728JKM0Ly_faGm0kp9S7IKlpSVpuhYbTi47sjFb--GOruz0w9O98mqWFCclF0MlF0BpAA)
Add a trailing `£` if you want it flagless.
## [Thunno 2](https://github.com/Thunno/Thunno2), <s>18</s> 17 [bytes](https://github.com/Thunno/Thunno2/blob/main/docs/codepage.md "Thunno 2 codepage")
```
ɦı35dḊʋ⁴ȥæÞ½×Jn|£
```
[Attempt This Online!](https://ato.pxeger.com/run?1=m728JKM0Ly_faMGCpaUlaboW-04uO7LR2DTl4Y6uU92PGrecWHp42eF5h_Yenu6VV3No8ZLipORiqFKYFgA)
No questionable constants.
#### Explanation
```python
ɦık+Ḋkg×Jn| # Full program
ɦ # Push 100
ı # Map over [1..100]:
k+ # Push [3, 5]
Ḋ # Divisible by [3, 5] (vectorises)
kg # Push ["Fizz", "Buzz"]
× # Multiply element-wise
J # Join by nothing
n| # Logical OR with the number
# N flag joins by newlines
# Implicit output
```
```python
ɦı35dḊʋ⁴ȥæÞ½×Jn|£ # Full program
ɦ # Push 100
ı # Map over [1..100]:
35d # Push [3, 5]
Ḋ # Divisible by [3, 5] (vectorises)
ʋ⁴ȥæÞ # Push compressed string "FizzBuzz"
½ # Split in half to get ["Fizz", "Buzz"]
× # Multiply element-wise
J # Join by nothing
n| # Logical OR with the number
£ # Print the result
```