Skip to content

Commit 7b9ac8f

Browse files
authored
difference_of_squares: Sync tests & add template (#2047)
[no important files changed]
1 parent 66cfb28 commit 7b9ac8f

File tree

2 files changed

+63
-3
lines changed

2 files changed

+63
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
use difference_of_squares as squares;
2+
3+
{% for group in cases %}
4+
{% for test in group.cases %}
5+
6+
{% if test.property == "squareOfSum" %}
7+
{% set function = "square_of_sum" %}
8+
{% elif test.property == "sumOfSquares" %}
9+
{% set function = "sum_of_squares" %}
10+
{% elif test.property == "differenceOfSquares" %}
11+
{% set function = "difference" %}
12+
{% endif %}
13+
14+
{% filter replace(from="difference_of_squares", to="difference") %}
15+
#[test]
16+
#[ignore]
17+
fn {{ test.description | make_ident }}() {
18+
assert_eq!(
19+
{{ test.expected | fmt_num }},
20+
squares::{{ function }}({{ test.input.number }})
21+
);
22+
}
23+
{% endfilter %}
24+
25+
{% endfor -%}
26+
{% endfor -%}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1-
# This is an auto-generated file. Regular comments will be removed when this
2-
# file is regenerated. Regenerating will not touch any manually added keys,
3-
# so comments can be added in a "comment" key.
1+
# This is an auto-generated file.
2+
#
3+
# Regenerating this file via `configlet sync` will:
4+
# - Recreate every `description` key/value pair
5+
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
6+
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
7+
# - Preserve any other key/value pair
8+
#
9+
# As user-added comments (using the # character) will be removed when this file
10+
# is regenerated, comments can be added via a `comment` key.
11+
12+
[e46c542b-31fc-4506-bcae-6b62b3268537]
13+
description = "Square the sum of the numbers up to the given number -> square of sum 1"
14+
15+
[9b3f96cb-638d-41ee-99b7-b4f9c0622948]
16+
description = "Square the sum of the numbers up to the given number -> square of sum 5"
17+
18+
[54ba043f-3c35-4d43-86ff-3a41625d5e86]
19+
description = "Square the sum of the numbers up to the given number -> square of sum 100"
20+
21+
[01d84507-b03e-4238-9395-dd61d03074b5]
22+
description = "Sum the squares of the numbers up to the given number -> sum of squares 1"
23+
24+
[c93900cd-8cc2-4ca4-917b-dd3027023499]
25+
description = "Sum the squares of the numbers up to the given number -> sum of squares 5"
26+
27+
[94807386-73e4-4d9e-8dec-69eb135b19e4]
28+
description = "Sum the squares of the numbers up to the given number -> sum of squares 100"
29+
30+
[44f72ae6-31a7-437f-858d-2c0837adabb6]
31+
description = "Subtract sum of squares from square of sums -> difference of squares 1"
32+
33+
[005cb2bf-a0c8-46f3-ae25-924029f8b00b]
34+
description = "Subtract sum of squares from square of sums -> difference of squares 5"
35+
36+
[b1bf19de-9a16-41c0-a62b-1f02ecc0b036]
37+
description = "Subtract sum of squares from square of sums -> difference of squares 100"

0 commit comments

Comments
 (0)