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
/** | |
Prompt: | |
A farming family wishes to plant some barley and some wheat. They can plant a maximum | |
of 100 acres of barley and a maximum of 80 acres of wheat. However, they only have 120 | |
acres of land available for planting. Barley costs $20 per acre for seeds, and wheat costs | |
$30 per acre for seeds. However, they only have $3000 available for seed costs. They expect | |
a harvest of 1000 pounds per acre of barley and 3000 pounds per acre of wheat. How many | |
acres of each crop should they plant to maximize their total harvest? |
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
{ | |
programs: { | |
`${programId}`: { | |
roots: [`${commandId}`, ... ], | |
commands: { | |
`${commandId}`: { | |
id: `${commandId}`, | |
type: `${commandType}`, | |
transitions: { | |
in: [`${transitionId}`, ... ], |
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
{ | |
"rules": { | |
"indent": [ | |
2, | |
2 | |
], | |
"quotes": [ | |
2, | |
"single" | |
], |