Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove English from Japanese version #15

Open
wants to merge 2 commits into
base: version3
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions silver_answers_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ Rubyの変数名についてのルールは以下のとおりです。

一つのアプローチは二つの整数を使用する方法、つまり`x[1,3]`のような書き方で、これはインデックス`1`からはじまる長さ`3`の部分配列を意味します。

Another approach is to use a range, which generates a subarray based the index values within that range.
もう一つのアプローチはRangeオブジェクトを使用する方法で、指定された範囲に含まれるインデックスの値にもとづいた部分配列を生成します。

範囲を使うシンプルな形式は`x[1..3]`のようなもので、インデックス`1`ではじまり`3`で終わる部分配列を返します。
Expand Down Expand Up @@ -397,8 +396,6 @@ Rubyの数値クラスの`<=>`の動作は、この挙動を自動的に提供

**A44: (b)**

The `seek` method is used to move to a specific byte offset in an I/O stream.
Offsets are zero-based, so `seek(5)` sets the position in the stream to just *after* the fifth byte.
`seek`メソッドはI/Oストリームの特定のバイトオフセットに移動するために使用されます。
オフセットは0ベースで、`seek(5)`は5バイト目の直後の位置にセットします。

Expand Down