Timeline for N-dimensional N^N array filled with N
Current License: CC BY-SA 4.0
88 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| May 13 at 16:16 | answer | added | Shaggy | timeline score: 0 | |
| May 13 at 9:33 | answer | added | Adamátor | timeline score: 1 | |
| May 13 at 7:11 | vote | accept | Adám | ||
| May 13 at 7:01 | answer | added | Galen Ivanov | timeline score: 1 | |
| May 13 at 5:59 | answer | added | janAkali | timeline score: 1 | |
| May 13 at 3:03 | answer | added | Jordan | timeline score: 2 | |
| Sep 28, 2023 at 23:31 | answer | added | chunes | timeline score: 4 | |
| Jun 20, 2023 at 18:17 | answer | added | The Thonnu | timeline score: 2 | |
| Feb 21, 2023 at 13:16 | answer | added | chunes | timeline score: 3 | |
| Dec 15, 2022 at 20:07 | answer | added | naffetS | timeline score: 3 | |
| Dec 15, 2022 at 18:50 | answer | added | DLosc | timeline score: 3 | |
| Dec 15, 2022 at 16:34 | answer | added | bigyihsuan | timeline score: 1 | |
| Apr 15, 2022 at 1:42 | answer | added | naffetS | timeline score: 2 | |
| Apr 14, 2022 at 2:44 | answer | added | des54321 | timeline score: 3 | |
| Nov 2, 2021 at 11:52 | answer | added | alephalpha | timeline score: 2 | |
| Aug 29, 2021 at 16:24 | answer | added | Unrelated String | timeline score: 3 | |
| Aug 29, 2021 at 1:40 | answer | added | theangryepicbanana | timeline score: 7 | |
| Aug 28, 2021 at 23:18 | answer | added | roblogic | timeline score: 0 | |
| Aug 27, 2021 at 10:14 | answer | added | chunes | timeline score: 2 | |
| Aug 27, 2021 at 9:00 | answer | added | Kevin Cruijssen | timeline score: 5 | |
| Feb 21, 2019 at 21:25 | answer | added | Kamil Drakari | timeline score: 2 | |
| Feb 21, 2019 at 8:43 | answer | added | DLosc | timeline score: 1 | |
| Nov 20, 2018 at 13:08 | answer | added | maxb | timeline score: 5 | |
| Jun 30, 2018 at 21:25 | answer | added | ბიმო | timeline score: 5 | |
| Jun 30, 2018 at 17:14 | answer | added | Sundar R | timeline score: 5 | |
| Jun 24, 2018 at 8:39 | answer | added | IDid | timeline score: 0 | |
| Jun 24, 2018 at 5:30 | answer | added | Jakob | timeline score: 2 | |
| Jun 23, 2018 at 23:13 | history | edited | Adám | CC BY-SA 4.0 | deleted 67 characters in body |
| Jun 22, 2018 at 20:51 | comment | added | Conor O'Brien | The hastebin links seem to be broken. They redirect me to the main site | |
| Jun 22, 2018 at 20:14 | answer | added | Dom Hastings | timeline score: 0 | |
| Jun 5, 2018 at 20:24 | answer | added | dylnan | timeline score: 7 | |
| Jun 5, 2018 at 20:18 | comment | added | JoshM | @Adám nvm I figured it out | |
| Jun 5, 2018 at 20:02 | answer | added | Giuseppe | timeline score: 2 | |
| Jun 5, 2018 at 19:46 | comment | added | Adám | @JoshM You're supposed to return/output an array. | |
| Jun 5, 2018 at 19:41 | answer | added | JoshM | timeline score: 1 | |
| Jun 5, 2018 at 19:37 | comment | added | JoshM | can I have a trailing comma at the end of the answer like "[1]," or "[[2,2],[2,2]]," | |
| Jun 5, 2018 at 18:34 | answer | added | 12Me21 | timeline score: 1 | |
| Aug 21, 2017 at 20:21 | comment | added | Adám | @sergiol Now that there are plenty of answers, you can just use one of the Try it Online! links to generate the desired outputs. | |
| Aug 21, 2017 at 20:16 | comment | added | sergiol | 5. and 6. seem expired. | |
| Aug 21, 2017 at 19:44 | answer | added | Felix Guo | timeline score: 1 | |
| Mar 17, 2017 at 0:59 | answer | added | RenderSettings | timeline score: 1 | |
| Mar 16, 2017 at 23:47 | answer | added | ceilingcat | timeline score: 3 | |
| Mar 8, 2017 at 23:55 | answer | added | Andrakis | timeline score: 1 | |
| Mar 6, 2017 at 20:16 | answer | added | Adám | timeline score: 4 | |
| Mar 4, 2017 at 3:34 | answer | added | Mitchell Spector | timeline score: 5 | |
| Mar 3, 2017 at 7:54 | answer | added | AvahW | timeline score: 1 | |
| Mar 2, 2017 at 8:44 | answer | added | G B | timeline score: 5 | |
| Mar 1, 2017 at 23:30 | answer | added | MattPutnam | timeline score: 3 | |
| Mar 1, 2017 at 20:09 | answer | added | Neil | timeline score: 6 | |
| Mar 1, 2017 at 13:41 | answer | added | Neil | timeline score: 6 | |
| Mar 1, 2017 at 11:04 | answer | added | draegtun | timeline score: 4 | |
| Mar 1, 2017 at 9:58 | comment | added | Adám | @Neil Ah, they are pointers, so the if one sets the very first element of the first a to 2, all the elements of a become 2, whereas that isn't the case for the second a. The first is fine too, if it isn't too much work, I'd be interested in seeing both for comparison. | |
| Mar 1, 2017 at 9:55 | comment | added | Neil | Take the case N = 3. Am I allowed to write (unrolled) a = 3; a = [a, a, a]; a = [a, a, a]; a = [a, a, a]; or must I write a11 = [3, 3, 3]; a12 = [3, 3, 3]; a13 = [3, 3, 3]; a1 = [a11, a12, a13]; /* etc. for a2 and a3 */ a = [a1, a2, a3];? | |
| Mar 1, 2017 at 9:42 | answer | added | cliffroot | timeline score: 3 | |
| Mar 1, 2017 at 9:22 | answer | added | anacron | timeline score: 6 | |
| Mar 1, 2017 at 7:25 | answer | added | adrianmp | timeline score: 5 | |
| Mar 1, 2017 at 6:51 | answer | added | clismique | timeline score: 2 | |
| Mar 1, 2017 at 6:20 | answer | added | Ørjan Johansen | timeline score: 9 | |
| Mar 1, 2017 at 5:50 | comment | added | Adám | @Neil I don't understand. Can you elaborate? | |
| Mar 1, 2017 at 5:47 | comment | added | Adám | @TheGreatDuck Correct, but I'm pretty sure user2357112 meant it as a joke. | |
| Mar 1, 2017 at 5:03 | history | tweeted | twitter.com/StackCodeGolf/status/836803970249154566 | ||
| Mar 1, 2017 at 4:31 | comment | added | user64742 | @user2357112 I think that's more of a precondition type issue. I doubt the op actually expects the function to accept memory as input. | |
| Mar 1, 2017 at 0:25 | comment | added | Neil | Do all the arrays need to be distinct objects? | |
| Feb 28, 2017 at 21:53 | answer | added | smls | timeline score: 4 | |
| Feb 28, 2017 at 21:40 | answer | added | Flounderer | timeline score: 10 | |
| Feb 28, 2017 at 19:05 | comment | added | user2357112 | Since "Enough memory" is part of the input, I want to see an answer that controls a robot to actually take the memory as input and plug it in before using it. | |
| Feb 28, 2017 at 18:53 | answer | added | Jonathan Allan | timeline score: 7 | |
| Feb 28, 2017 at 18:37 | answer | added | nimi | timeline score: 8 | |
| Feb 28, 2017 at 18:14 | answer | added | Ismael Miguel | timeline score: 3 | |
| Feb 28, 2017 at 18:02 | history | edited | Adám | CC BY-SA 3.0 | I/O |
| Feb 28, 2017 at 18:00 | history | rollback | Adám | Rollback to Revision 1 | |
| Feb 28, 2017 at 17:59 | history | edited | Jonathan Allan | CC BY-SA 3.0 | added 36 characters in body |
| Feb 28, 2017 at 17:59 | answer | added | xnor | timeline score: 58 | |
| Feb 28, 2017 at 17:41 | answer | added | Håvard Nygård | timeline score: 2 | |
| Feb 28, 2017 at 17:38 | answer | added | JungHwan Min | timeline score: 13 | |
| Feb 28, 2017 at 17:31 | answer | added | Dennis | timeline score: 14 | |
| Feb 28, 2017 at 17:23 | answer | added | Business Cat | timeline score: 6 | |
| Feb 28, 2017 at 17:19 | answer | added | Suever | timeline score: 7 | |
| Feb 28, 2017 at 17:15 | answer | added | ovs | timeline score: 5 | |
| Feb 28, 2017 at 17:14 | answer | added | Trelzevir | timeline score: 7 | |
| Feb 28, 2017 at 17:10 | answer | added | lynn | timeline score: 5 | |
| Feb 28, 2017 at 17:05 | answer | added | rahnema1 | timeline score: 10 | |
| Feb 28, 2017 at 17:03 | answer | added | Riley | timeline score: 9 | |
| Feb 28, 2017 at 17:02 | answer | added | miles | timeline score: 35 | |
| Feb 28, 2017 at 17:02 | answer | added | Arnauld | timeline score: 10 | |
| Feb 28, 2017 at 16:55 | comment | added | Adám | @Okx JSON, or any other unambiguous array notation. | |
| Feb 28, 2017 at 16:54 | comment | added | Okx | If our language does not support arrays, what would be an acceptable output format? | |
| Feb 28, 2017 at 16:48 | history | asked | Adám | CC BY-SA 3.0 |