-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4cf6cf7
commit ef10d70
Showing
6,005 changed files
with
1,545 additions
and
45 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package org.gnit.bible | ||
|
||
/** | ||
* Created by Joel on 10/22/2014. | ||
*/ | ||
object Chapters { | ||
fun maxChapter(book: Int): Int = when (book) { | ||
19 -> 150 | ||
23 -> 66 | ||
24 -> 52 | ||
1 -> 50 | ||
26 -> 48 | ||
18 -> 42 | ||
2 -> 40 | ||
4, 14 -> 36 | ||
5 -> 34 | ||
9, 20 -> 31 | ||
13 -> 29 | ||
40, 44 -> 28 | ||
3 -> 27 | ||
12 -> 25 | ||
6, 10, 42 -> 24 | ||
11, 66 -> 22 | ||
7, 43 -> 21 | ||
41, 45, 46 -> 16 | ||
28, 38 -> 14 | ||
16, 47, 58 -> 13 | ||
21, 27 -> 12 | ||
15, 17 -> 10 | ||
30 -> 9 | ||
22 -> 8 | ||
33 -> 7 | ||
48, 49, 54 -> 6 | ||
25, 52, 59, 60, 62 -> 5 | ||
8, 32, 39, 50, 51, 55 -> 4 | ||
29, 34, 35, 36, 53, 56, 61 -> 3 | ||
37 -> 2 | ||
31, 57, 63, 64, 65 -> 1 | ||
else -> 50 | ||
} | ||
} |
This file contains 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
This file contains 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
Oops, something went wrong.