Data update
This commit is contained in:
parent
0df55f9f24
commit
aec8ed51b6
1045 changed files with 18889 additions and 2777 deletions
|
|
@ -1,17 +1,6 @@
|
|||
$ include "seed7_05.s7i";
|
||||
include "gethttp.s7i";
|
||||
|
||||
const func string: reverse (in string: word) is func
|
||||
result
|
||||
var string: drow is "";
|
||||
local
|
||||
var integer: index is 0;
|
||||
begin
|
||||
for index range length(word) downto 1 do
|
||||
drow &:= word[index];
|
||||
end for;
|
||||
end func;
|
||||
|
||||
const proc: main is func
|
||||
local
|
||||
var array string: wordList is 0 times "";
|
||||
|
|
@ -20,7 +9,7 @@ const proc: main is func
|
|||
var string: drow is "";
|
||||
var integer: count is 0;
|
||||
begin
|
||||
wordList := split(lower(getHttp("www.puzzlers.org/pub/wordlists/unixdict.txt")), "\n");
|
||||
wordList := split(lower(getHttp("wiki.puzzlers.org/pub/wordlists/unixdict.txt")), "\n");
|
||||
for word range wordList do
|
||||
drow := reverse(word);
|
||||
if drow not in words then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue