Libraryless. Click here for Pure Java version (1131L/8K/25K).
1 | !752 |
2 | |
3 | answer { |
4 | if "how many elements are in the list *" { |
5 | L list = cast safeUnstructure(m.unq(0)); |
6 | ret str(l(list)); |
7 | } |
8 | |
9 | if "what is the * element in the list *" { |
10 | S x = m.unq(0).toLowerCase(); |
11 | L list = cast safeUnstructure(m.unq(1)); |
12 | if (eq(x, "first")) |
13 | ret structure(first(list)); |
14 | if (eq(x, "last")) |
15 | ret structure(last(list)); |
16 | |
17 | // "1st", "2nd" etc |
18 | int i = 0; |
19 | while (i < l(x) && isDigit(x.charAt(i))) |
20 | ++i; |
21 | if (i > 0) |
22 | ret structure(get(list, parseInt(x.substring(0, i))-1)); |
23 | } |
24 | |
25 | // It should match if you write: "what is the 1st element..." |
26 | // cause the tokenizer works like that... |
27 | if (match("what is the * st element in the list *", s, m) |
28 | || match("what is the * nd element in the list *", s, m) |
29 | || match("what is the * rd element in the list *", s, m) |
30 | || match("what is the * th element in the list *", s, m)) { |
31 | L list = cast safeUnstructure(m.unq(1)); |
32 | ret structure(get(list, parseInt(m.unq(0))-1)); |
33 | } |
34 | } |
Began life as a copy of #1002394
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1002414 |
Snippet name: | List Processing Bot |
Eternal ID of this version: | #1002414/1 |
Text MD5: | 1b218bfb2c3d80bc0273c544c5352ac9 |
Transpilation MD5: | 27260810e828c4f31a9e8dd78bcf8319 |
Author: | stefan |
Category: | javax |
Type: | JavaX source code |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2016-01-20 17:57:29 |
Source code size: | 1048 bytes / 34 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 642 / 1203 |
Referenced in: | [show references] |