2020-06-01から1ヶ月間の記事一覧

Brainfuckアルゴリズム(代入、加算)

代入のアルゴリズム x = y <セルの配置> cell1 : y cell2 : x cell3 : temp <処理> yをxとtempに移動させる tempをyに移動させる(復元する) +++ [- >+ >+ <<] >>[- <<+ >>] <<++++++++++++++++++++++++++++++++++++++++++++++++. >+++++++++++++++++++++…

Project Euler Problem9

Julia for n = 1:15 for m = (n+1):22 a = m^2 - n^2 b = 2*m*n c = m^2 + n^2 if a+b+c == 1000 println(a*b*c) end end end ピタゴラス数(a, b, c)は(m^2 - n^2, 2mn, m^2 + n^2)で求められるそうです。 参考ページピタゴラス数の求め方とその証明 | 高校…

Google翻訳で日本語と英語を勉強する

あなたがどんなに完璧になろうとしても、あなたが時々失敗することは当然である。 No matter how perfect you may be, it is natural for you to sometimes fail. もしあなたが失敗しても、あなたは希望を持ち続けるだろう。 If you fail, you will continue…

Project Euler Problem8

Rubyによる方法 puts ARGF.read.gsub(/\n/, "").each_char.each_cons(13).collect {|digits| digits.map(&:to_i).reduce(:*) }.max 対象データをファイルに保存して、標準入力から入力する。

Google翻訳で日本語と英語を勉強する

彼らは伝統的な航海技術を持っている最後の人々だと言われている。 They are said to be the last people to have traditional sailing skills. 彼らはエンジンを使わずに風だけを使って海を渡ることができる。 They can cross the sea using only the wind …

Google翻訳で日本語と英語を勉強する

賢い人は話す。 The wise person speaks. より賢い人は聞く。 The smarter people hear. 私達はよく知らないことについてはよく話すが、よく知っていることについてはあまり話さない。 We talk a lot about things we don't know well, but not a lot about …

Debian系Linuxでroot以外のユーザにWiresharkの実行権限を与える手順

下記のコマンドを実行する sudo dpkg-reconfigure wireshark-commonroot以外のユーザにキャプチャする権限を与えるか問われる画面が表示されるので、 チェックボックスにチェックを入れて「next」をクリックする下記のコマンドで権限を与えたいユーザをwires…

Project Euler Problem7

Haskellでの方法 エラトステネスのふるいを使いました sieve :: [Int] -> [Int] sieve (x:xs) = x : (sieve $ filter ((/=0) . (`mod` x)) xs) sieve [2..] !! 10000

Project Euler Problem1

C言語で関数型プログラミングの考え方でやりました #include <stdio.h> #include <stdlib.h> struct list { int value; struct list *next; }; typedef int func_t(int); struct list *cons(int val, struct list *lst) { struct list *p; if ((p = malloc(sizeof(struct list))</stdlib.h></stdio.h>…

Google翻訳で日本語と英語を勉強する

地球温暖化の原因はいくつか存在する。 There are several causes of global warming. いくつかのことが地球温暖化を引き起こしている。 Several things are causing global warming. 化石燃料の使用は地球温暖化の原因の一つである。 The use of fossil fue…

Google翻訳で日本語と英語を勉強する

ここの気候はとても温暖です。ここでは冬でもめったに雪は降りません。 The climate here is very warm. It rarely snows here even in winter. 私達はここでとても温暖な気候を持っています。私達は冬でもほとんど雪を持ちません。 We have a very mild cli…