Skip to content

Commit

Permalink
Updated the questions in level 3 to reflect Figma (#125)
Browse files Browse the repository at this point in the history
* Updated the questions in level 3 to reflect Figma

* ran lint
  • Loading branch information
neilwj7 authored Nov 11, 2024
1 parent 00127af commit 483bb7d
Showing 1 changed file with 9 additions and 20 deletions.
29 changes: 9 additions & 20 deletions src/components/shared/ExerciseSide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,6 @@ ExerciseSideProps): JSX.Element {
<div style={{ paddingTop: '10vw' }}>
<GraphInput
questionArray={[
{
textArray: [
{
type: 'text',
text: '# Goto point A and draw on the dotted line',
},
],
},
{
textArray: [
{ type: 'text', text: 'turtle.goto(' },
Expand All @@ -81,24 +73,21 @@ ExerciseSideProps): JSX.Element {
},
{
textArray: [
{ type: 'text', text: 'turtle.setheading(' },
{ type: 'input', width: 4, id: 1, answer: '225' },
{ type: 'text', text: 'turtle.' },
{ type: 'input', width: 4, id: 1, answer: 'goto' },
{ type: 'text', text: '(1,' },
{ type: 'input', width: 2, id: 2, answer: '-1' },
{ type: 'text', text: ')' },
],
},
{
textArray: [
{ type: 'text', text: 'turtle.' },
{ type: 'input', width: 8, id: 2, answer: 'forward' },
{ type: 'text', text: '()' },
],
},
{
textArray: [
{ type: 'text', text: 'turtle.goto(' },
{ type: 'input', width: 2, id: 3, answer: '0' },
{ type: 'text', text: ', ' },
{ type: 'input', width: 2, id: 4, answer: '-1' },
{ type: 'input', width: 4, id: 3, answer: 'goto' },
{ type: 'text', text: '(' },
{ type: 'input', width: 2, id: 4, answer: '0' },
{ type: 'text', text: ',' },
{ type: 'input', width: 2, id: 5, answer: '-1' },
{ type: 'text', text: ')' },
],
},
Expand Down

0 comments on commit 483bb7d

Please sign in to comment.