This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Alice:@t_udaさん | |
| // Bob:@nonamea774さん | |
| Aliceさんがログインしました。 | |
| Bobさんがログインしました。 | |
| Alice:数学タグ覚えてますでしょうか | |
| Bob:タグとして、両立できなくてどうするんですか | |
| Alice:両立しますよ休暇ぜろ | |
| Bob:えてますでしょうか | |
| Alice:えてますでしょうか |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def inflist(a,n): | |
| while True: | |
| a.append((a[1]-a[0])*n) | |
| yield n | |
| n+=1 | |
| def take(n,a): | |
| b=[] | |
| for i in range(n): | |
| b.append(a.next()) |
NewerOlder