Related changes

Jump to navigation Jump to search

Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.

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 10:15, 29 March 2024
   
Page name:
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

29 March 2024

     09:59  Never Gonna Give You Up diffhist +45 MihaiEso talk contribs (→‎Implementations)

27 March 2024

     02:58  A+B Problem diffhist −1,778 Cleverxia talk contribs (→‎JSFuck)

26 March 2024

N    23:26  Empty Program‎‎ 3 changes history +1,282 [None1‎; PrySigneToFry‎ (2×)]
 m   
23:26 (cur | prev) +27 None1 talk contribs (→‎Categories)
     
14:58 (cur | prev) 0 PrySigneToFry talk contribs (→‎Python)
N    
14:58 (cur | prev) +1,255 PrySigneToFry talk contribs (Created page with "Empty Program is a program that doesn't do anything. In Python, you just write a null program to do it. But in C++, you need to write a main function with no operation except <code>return 0</code>. == Python == <pre> // NOP </pre> == C++ == int main() { return 0; } == Java == <pre> public class EmptyProgram(){ public static void main(){ // TODO } } </pre> == Pascal == <pre> begin // TODO end . </pre> == C == <pre> void main(){} </pre> == PHP =...")
N    15:04  Shortest Code Challenge‎‎ 3 changes history +571 [PythonshellDebugwindow‎; PrySigneToFry‎; None1‎]
 m   
15:04 (cur | prev) +9 PythonshellDebugwindow talk contribs (Stub)
 m   
11:59 (cur | prev) +27 None1 talk contribs
N    
11:58 (cur | prev) +535 PrySigneToFry talk contribs (Created page with "Shortest Code Challenge is arranged from One Line Challenge. Here is something of this challenge. == Python == One! print("Hello, world!") Two! a = int(input()); b = int(input()); c = a + b; print(c) Note: PEP-8 makes it clear that it's best not to write code like this. == C++ == One! #include<iostream> using namespace std; int a, b, c; int main(){cin >> a >> b; c = a + b; cout << c << endl; return 0;} Two! #include<bits/stdc++.h> using namespace std; int main(...")

24 March 2024

     09:19  A+B Problem diffhist +138 PrySigneToFry talk contribs

23 March 2024

     00:43  Looping counter diffhist +162 Cleverxia talk contribs (→‎Examples)

22 March 2024

     11:23  A+B Problem‎‎ 5 changes history −28 [None1‎ (5×)]
 m   
11:23 (cur | prev) +1,492 None1 talk contribs (Undo revision 125085 by None1 (talk) (It doesn't work)) Tag: Undo
 m   
11:16 (cur | prev) −1,492 None1 talk contribs (→‎JSFuck) Tag: Reverted
 m   
11:07 (cur | prev) 0 None1 talk contribs (→‎JSFuck)
 m   
11:06 (cur | prev) −219 None1 talk contribs (→‎JSFuck)
     
11:04 (cur | prev) +191 None1 talk contribs (→‎C++: Added C# implementation)