検索結果

(前の20件 | ) (20 | 50 | 100 | 250 | 500 件) を表示
  • x st ~を使った場合には proof let x be set such that ~ ... 証明したい式で ex y ...を使った場合には proof take y; ... 定義定理などで外部ファイルに ex A と書かれている場合には consider a ~ by 外部ファイル名:番号;…
    2キロバイト (210 語) - 2009年3月17日 (火) 01:20
  • これは1の無限リストです。take 2 onesはどうあるべきかを考えてみましょう。takeの定義は次の通りです。 take 0 _ = [] take n (x:xs) = x : take (n-1) xs take n [] = [] onesの近似シーケンスの要素をtakeに適用できます: take 2 ⊥…
    58キロバイト (9,143 語) - 2021年11月22日 (月) 13:10
  • didn't take a break.") for x, v in h.items(): if x == 7: break print(x, v) else: print("I didn't take a break.") 実行結果 two five seven I didn't take a break…
    37キロバイト (4,617 語) - 2024年3月2日 (土) 10:09
  • // number of elements per vertex, here (x,y,z,w) GL_FLOAT, // the type of each element GL_FALSE, // take our values as-is 0, // no extra data between…
    12キロバイト (1,817 語) - 2015年8月19日 (水) 06:36
  • Room for improvement here! eval (List ((Atom "cond"):cs)) = do b <- (liftM (take 1 . dropWhile f) $ mapM condClause cs) >>= cdr car [b] >>= eval where condClause…
    15キロバイト (1,397 語) - 2021年4月13日 (火) 11:11
  • 2, // number of elements per vertex, here (x,y) GL_FLOAT, // the type of each element GL_FALSE, // take our values as-is 5 * sizeof(GLfloat), // next…
    15キロバイト (2,137 語) - 2015年8月19日 (水) 06:38
  • anamorphism that builds up a list of values for the iteration variable to take. Then, you can treat that as a for-each loop and use a catamorphism to break…
    14キロバイト (2,312 語) - 2011年11月16日 (水) 05:24
  • 中学校英語/2年 中学校英語/2年では、学年の英語について教授します。単語及び文法も必要に合わせて一緒にお読みください。 本文 A: I want to take this suit of clothes. B: I think that is a bit expensive. Why do you like…
    34キロバイト (4,780 語) - 2020年3月6日 (金) 10:06
  • す。遅延評価を理解することで、より効率的なコードを書くことができるようになります。 以下に、遅延評価を使ったHaskellのコード例を示します。 take 5 [1..] 1から始まる無限のリストを作成し、そのリストから最初の5つの要素を取り出します。しかし、このコードはリストの最初の5つの要素だけ…
    6キロバイト (868 語) - 2023年3月7日 (火) 03:04
  • 2, // number of elements per vertex, here (x,y) GL_FLOAT, // the type of each element GL_FALSE, // take our values as-is 0, // no extra data between each…
    14キロバイト (2,018 語) - 2022年7月15日 (金) 03:01
  • 3, // number of elements per vertex, here (x,y,z) GL_FLOAT, // the type of each element GL_FALSE, // take our values as-is sizeof(struct attributes), //…
    8キロバイト (1,107 語) - 2015年8月27日 (木) 00:06
  • responsibility. Password: Doing initial setup for install in /usr/local. This may take a while if there are preexisting files in /usr/local... Downloading information…
    23キロバイト (2,948 語) - 2024年5月6日 (月) 02:38
  • 2, // number of elements per vertex, here (x,y) GL_FLOAT, // the type of each element GL_FALSE, // take our values as-is 0, // no extra data between each…
    14キロバイト (1,943 語) - 2015年8月19日 (水) 06:37
  • attr_accessor :x, :y def initialize(x, y) @x = x @y = y end def +(other) Vector2.new(@x + other.x, @y + other.y) end def to_s() "[#{@x}, #{@y}]" end end v1…
    275キロバイト (36,204 語) - 2024年3月14日 (木) 06:00
  • 2, // number of elements per vertex, here (x,y) GL_FLOAT, // the type of each element GL_FALSE, // take our values as-is 0, // no extra data between each…
    18キロバイト (2,483 語) - 2021年7月16日 (金) 04:16
  • didn't take a break.") for x, v in h.items(): if x == 7: break print(x, v) else: print("I didn't take a break.") 実行結果 two five seven I didn't take a break…
    1キロバイト (41,670 語) - 2024年5月8日 (水) 23:35
  • at all. B: Well, you have time. But if you don't take this, I want to buy nothing for you. この課の単語 take(動詞): suit(名詞): clothes(名詞): think(動詞):思う bit(名詞):…
    77キロバイト (10,984 語) - 2023年5月3日 (水) 01:52
  • (サット) see → saw (ソウ) give → gave (ゲイブ) sing → sang (サング) eat → ate (エイト) take → took (トゥック) make → made (メイド) bring → brought run → ran (レイン) think → thought…
    84キロバイト (11,512 語) - 2023年3月30日 (木) 14:43
  • 以下に、関数の戻り値の定義方法と呼び出し方の例を示します。 function add(x, y) return x + y # xとyの合計を返す end あるいは add(x, y) = x + y # xとyの合計を返す 上記の例では、add 関数が x と y の合計を返します。 result = add(3, 5) println(result)…
    203キロバイト (29,381 語) - 2024年1月31日 (水) 10:07
  • 引数が2つの場合の加算関数を定義する例 let add x y = x + y // 引数が2つの場合の減算関数を定義する例 let subtract x y = x - y // 引数が3つの場合の最大値を求める関数を定義する例 let max3 x y z = max x (max y z) これらの例を使って、次に示すように関数を呼び出すことができます。…
    80キロバイト (11,481 語) - 2023年12月6日 (水) 05:50
(前の20件 | ) (20 | 50 | 100 | 250 | 500 件) を表示