- CPUクーラーのファンの替え
はやく買わないとぺっちん溶けるので大至急かも
NF-A12x25かも - NVMeのSSD(1TBくらい)
ぺっちん延命計画 - 電脳コイルのOST
あなたが私にくれたもの~🎶 - sE8ペア\
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
| git clone https://github.com/atilika/kuromoji | |
| git pull | |
| git status | |
| git branch | |
| git branch -a | |
| git log | |
| git add . | |
| git add hoge | |
| git co master | |
| git co -b topic/branch |
この記事は、C++ (fork) Advent Calendar 2013の12日目の記事です。
記事を書く人が居ないみたいなので、C++初心者ですが箸休め的な記事を書こうと思い立ち、いざ書き上げてみたら思いの外長くなりました。
この記事は、C++初心者な著者が、C++を用いて競技プログラミングをするために、調べたことや試した事などのまとめです。 記事中に誤り、問題点やご指摘、ご質問等ありましたら、@rigibunまでご連絡下さい(特にpush_bach)
githubのmarkdownを使いたかったことと、変更履歴が見られることからgistで書きました。
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
| #!/usr/bin/python | |
| if __name__ == '__main__': | |
| num = raw_input() | |
| num = int(num) if num else 10 | |
| l = [1] | |
| print l | |
| for i in range(num): | |
| l = map(lambda x,y:x+y,[0]+l,l+[0]) |