Skip to content

Commit 5df895f

Browse files
committed
Make "Zeckendorf Representation" live
Closes #667
1 parent aef782f commit 5df895f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

config/holes.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3611,7 +3611,6 @@ preamble = '''
36113611

36123612
['Zeckendorf Representation']
36133613
category = 'Mathematics'
3614-
experiment = 667
36153614
links = [
36163615
{ name = 'Rosetta Code', url = '//rosettacode.org/wiki/Zeckendorf_number_representation' },
36173616
{ name = 'Wikipedia', url = "//en.wikipedia.org/wiki/Zeckendorf's_theorem" },
@@ -3626,8 +3625,8 @@ preamble = '''
36263625
This sum is called the Zeckendorf representation.
36273626
36283627
<p>
3629-
Print the Zeckendorf representation for each input argument. Terms should
3630-
be listed in decreasing order separated by ' + '.
3628+
Print the Zeckendorf representation for each input argument.
3629+
Terms should be listed in decreasing order separated by ' + '.
36313630
For example, input <b>10</b> should produce <b>8 + 2</b>.
36323631
Inputs are in the range 1 (inclusive) to 2<sup>31</sup> (exclusive).
36333632
'''

sql/a-schema.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ CREATE TYPE hole AS ENUM (
5151
'seven-segment', 'si-units', 'sierpiński-triangle', 'smith-numbers',
5252
'spelling-numbers', 'star-wars-opening-crawl', 'sudoku', 'sudoku-v2',
5353
'ten-pin-bowling', 'time-distance', 'tongue-twisters', 'united-states',
54-
'vampire-numbers', 'van-eck-sequence', 'zodiac-signs', 'γ', 'λ', 'π', 'τ',
55-
'φ', '√2', '𝑒'
54+
'vampire-numbers', 'van-eck-sequence', 'zeckendorf-representation',
55+
'zodiac-signs', 'γ', 'λ', 'π', 'τ', 'φ', '√2', '𝑒'
5656
);
5757

5858
CREATE TYPE idea_category AS ENUM ('cheevo', 'hole', 'lang', 'other');

0 commit comments

Comments
 (0)