-
Notifications
You must be signed in to change notification settings - Fork 2
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
da-in
committed
Jan 1, 2024
1 parent
8a901a1
commit da666f4
Showing
2 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
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,18 @@ | ||
type Block = { | ||
size: number; | ||
}; | ||
|
||
const score = [3, 5, 7, 10, 15, 20, 25, 30, 40, 50, 100] | ||
|
||
export const blocks: { [key: number]: Block } = { | ||
1: { size: 75 }, | ||
2: { size: 98 }, | ||
3: { size: 137 }, | ||
4: { size: 180 }, | ||
5: { size: 200 }, | ||
6: { size: 240 }, | ||
7: { size: 280 }, | ||
8: { size: 320 }, | ||
9: { size: 320 }, | ||
10: { size: 400 }, | ||
}; |