Posts
Mars Lander - Python tutorial - CodinGame
Topics:
We create our first “method”.
We create our first “function”.
Bool variables.
Constants.
Conditions: “ternary operator”.
“class” defined, for now, as “a group of Methods and Functions”.
How to compare your code with other people’s code in CodinGame.
Posts
Excel - Thor tutorial - CodinGame
Topics:
Thor puzzle explanations, inputs, and outputs.
Giving a unique code for each board’s cell: string & string.
Locking rows and columns of a formula with $ and the F4 key.
Showing the goal/light on the grid: IF(condition, valueIfTrue, valueIfFalse).
Moving Thor step by step towards the goal.
CodinGame OUTPUT: choose(index, valueIf1, valueIf2, valueIf3).
Beyond the solution: let’s also show the path of Thor in the board.
MATCH() formula. How to find an element in a group.
Posts
Onboarding - Python tutorial - CodinGame
Variables: string, integer data types.
Convert string to integer number.
Comments: # single line and multi-line '''
Inputs and Outputs: input(“question”) print(“output”).
Loop: while
Step-by-step code execution: what “RUN” means, and the “Debug” button.
Conditions: if then else
Posts
Excel introduction - Onboarding tutorial - CodinGame
Topics:
Instead of Excel, you can use “LibreOffice Calc”.
Variable type: String/Text (left aligned).
Variable type: Number (right aligned).
Variable type: Date (right aligned).
Variable type: Boolean (aligned to the centre).
Cell name.
Formulas (usually begin with =).
Solving the CodinGame Onboarding puzzle in Excel: inputs, outputs.
Rearranging data from vertical to horizontal, and creating groups of four.
Copy & “paste-special”, with transpose.
INDEX(group_of_cells, pointer), cell I6 = INDEX($D$6:$D$65, $H6 * 4 + I$4)
Posts
Mars Lander - C# tutorial - CodinGame
Topics:
Constants.
We create our first “method”.
We create our first “function”.
Bool variables.
Conditions: “ternary operator”.
“class” defined, for now, as “a group of Methods and Functions”.
How to compare your code with other people’s code in CodinGame.
Posts
Selamat, Welcome
Welcome!!!
Kodindonesia is about creating a Koding family of people who share the hobby of puzzles, games, and learning more about Excel, Python and C#.
We are always on the lookout for fun puzzles: feel free to suggest what you like to see next!
The videos are on BitSlide/BitChute and on YouTube.
Posts
Onboarding - C# tutorial - CodinGame
Variable types: string
Variable types: integer
Conversion from string to integer
Comments in C#
Input, Output
Loop: while (condition)
Conditions: If Else
How to learn to code