Skip to content

Commit

Permalink
Merge pull request #609 from burenkov-anton/gaps
Browse files Browse the repository at this point in the history
Remove gaps at 2.94-2.97
  • Loading branch information
fey committed Oct 22, 2020
2 parents 2526180 + 7129a76 commit 6144d94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions resources/views/exercise/listing/2_94.blade.php
@@ -1,6 +1,5 @@
<p>{{ __('exercises/2_94.description.1') }}</p>
<pre><code>
(define p1 (make-polynomial 'x '((4 1) (3 -1) (2 -2) (1 2))))
<pre><code>(define p1 (make-polynomial 'x '((4 1) (3 -1) (2 -2) (1 2))))
(define p2 (make-polynomial 'x '((3 1) (1 -1))))
(greatest-common-divisor p1 p2)
</code></pre>
Expand Down
3 changes: 1 addition & 2 deletions resources/views/exercise/listing/2_95.blade.php
@@ -1,6 +1,5 @@
<p>{{ __('exercises/2_95.description.1') }}</p>
<pre><code>
P<sub>1</sub>: x<sup>2</sup> − 2x + 1
<pre><code>P<sub>1</sub>: x<sup>2</sup> − 2x + 1
P<sub>2</sub>: 11x<sup>2</sup> + 1
P<sub>3</sub>: 13x + 5
</code></pre>
Expand Down
6 changes: 2 additions & 4 deletions resources/views/exercise/listing/2_97.blade.php
@@ -1,13 +1,11 @@
<p>{{ __('exercises/2_97.description.1') }}</p>
<p>{{ __('exercises/2_97.description.2') }}</p>
<pre><code>
(define (reduce-integers n d)
<pre><code>(define (reduce-integers n d)
(let ((g (gcd n d)))
(list (/ n g) (/ d g))))
</code></pre>
<p>{{ __('exercises/2_97.description.3') }}</p>
<pre><code>
(define p1 (make-polynomial 'x '((1 1)(0 1))))
<pre><code>(define p1 (make-polynomial 'x '((1 1)(0 1))))
(define p2 (make-polynomial 'x '((3 1)(0 -1))))
(define p3 (make-polynomial 'x '((1 1))))
(define p4 (make-polynomial 'x '((2 1)(0 -1))))
Expand Down

0 comments on commit 6144d94

Please sign in to comment.