回答編集履歴
1
追記
answer
CHANGED
@@ -1,3 +1,20 @@
|
|
1
1
|
```C#
|
2
|
+
using System;
|
3
|
+
|
4
|
+
/*
|
5
|
+
なんとかかんとか
|
6
|
+
*/
|
7
|
+
|
8
|
+
public static class なんとかかんとか{
|
9
|
+
/*
|
10
|
+
なんとかかんとか
|
11
|
+
*/
|
12
|
+
public static T[] Shuffle(this T[] array){
|
13
|
+
// 省略
|
14
|
+
}
|
15
|
+
}
|
16
|
+
```
|
17
|
+
|
18
|
+
```C#
|
2
19
|
var result = price.Shuffle();
|
3
20
|
```
|