bowling code#3
Open
rani-i3 wants to merge 3 commits into
Open
Conversation
yuuu
reviewed
Sep 5, 2023
| @@ -0,0 +1,46 @@ | |||
| require 'date' | |||
There was a problem hiding this comment.
カレンダーのプログラムがPRに混じってしまっていますね。新しいブランチを作成する際は、今どのブランチにいるのかに注意して作成するようにしましょう。今回はこのままでOKです。
| end | ||
|
|
||
| frames = [] | ||
| shots.each_slice(2) do |s| |
There was a problem hiding this comment.
ここは以下のように書けますね。
frames = shots.each_slice(2).to_a| # binding.break | ||
| if index >=9 | ||
| point += frame.sum | ||
| # elsif frame_index == 11 |
There was a problem hiding this comment.
不要であれば削除しておきましょう。3行↑にある binding.break も同様です。
| shots.each_slice(2) do |s| | ||
| frames << s | ||
| end | ||
| p frames |
| p frames | ||
| point = 0 | ||
|
|
||
| frames.each_with_index do |frame, index| |
There was a problem hiding this comment.
ここは以下のように Enumerable#sum を使うと、自分で point を加算しなくて良くなるはずです。
point = frames.each_with_index.sum do |frame, index|
# 戻り値を各フレームのスコアにする
end
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.