2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

paiza.ioでelixirAdvent Calendar 2022

Day 6

paiza.ioでelixir その6

Last updated at Posted at 2022-10-24

概要

paiza.ioでelixirやってみた。
fizzbuzzをパイプラインでやってみた。

参考にしたページ

サンプルコード

Stream.unfold({1, 1, 1}, fn
  {n, 3, 5} -> 
    {"FizzBuzz", {n + 1, 1, 1}}
  {n, 3, b} -> 
    {"Fizz", {n + 1, 1, b + 1}}
  {n, f, 5} -> 
    {"Buzz", {n + 1, f + 1, 1}}
  {n, f, b} -> 
    {n, {n + 1, f + 1, b + 1}}
end) 
|> Stream.take(100) 
|> Enum.each(&IO.puts/1)

実行結果

1
2
Fizz
4
Buzz
Fizz
7
8
Fizz
Buzz
11
Fizz
13
14
FizzBuzz
16
17
Fizz
19
Buzz
Fizz
22
23
Fizz
Buzz
26
Fizz
28
29
FizzBuzz
31
32
Fizz
34
Buzz
Fizz
37
38
Fizz
Buzz
41
Fizz
43
44
FizzBuzz
46
47
Fizz
49
Buzz
Fizz
52
53
Fizz
Buzz
56
Fizz
58
59
FizzBuzz
61
62
Fizz
64
Buzz
Fizz
67
68
Fizz
Buzz
71
Fizz
73
74
FizzBuzz
76
77
Fizz
79
Buzz
Fizz
82
83
Fizz
Buzz
86
Fizz
88
89
FizzBuzz
91
92
Fizz
94
Buzz
Fizz
97
98
Fizz
Buzz

成果物

以上。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?