Recent changes

Jump to navigation Jump to search

Track the most recent changes to the wiki on this page.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Hide minor edits
Show new changes starting from 03:17, 18 July 2026
   
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

16 July 2026

N    08:27  Blog: 2026-07-16 diffhist +99 Razzi talk contribs (Created page with "https://docs.google.com/forms/d/e/1FAIpQLSdAI_p6CVsqvF3fN9OsK6qMzjJhre1LDiiMhiIcQxuomS7y0g/viewform")

12 July 2026

N    12:09  Blog: 2026-07-12 diffhist +674 Razzi talk contribs (Created page with "Making distinct pairs out of a group of 15 <pre> In [33]: def permute(l, n): ...: copy = list(l) ...: new = [] ...: index = 0 ...: for _ in range(len(l)): ...: new.append(copy.pop(index)) ...: index = (index + n) % max(len(copy), 1) ...: return new ...: In [34]: permute(ns, 1) Out[34]: [1, 3, 5, 7, 9, 11, 13, 15, 4, 8, 12, 2, 10, 6, 14] In [35]: permute(ns, 0) Out[35]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10,...")