Skip to content

Commit 0abece0

Browse files
committed
Adding links to the puzzles on CodinGame.
1 parent 168d846 commit 0abece0

File tree

95 files changed

+96
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+96
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion

lib/community/training/easy/ISBNCheckDigit/ISBNCheckDigit.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* The "ISBN check digit" puzzle.
3+
* @see {@link https://www.codingame.com/ide/puzzle/isbn-check-digit}
34
*/
45
function execute(readline) {
56
const N = parseInt(readline());

lib/community/training/easy/NGRBasicRadar/NGRBasicRadar.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* The "NGR basic radar" puzzle.
3+
* @see {@link https://www.codingame.com/ide/puzzle/1--ngr---basic-radar}
34
*/
45
function execute(readline) {
56
const N = parseInt(readline());

lib/community/training/easy/aChildsPlay/aChildsPlay.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* The "A child's play" puzzle.
3+
* @see {@link https://www.codingame.com/ide/puzzle/a-childs-play}
34
*/
45
function execute(readline) {
56
var inputs = readline().split(' ');

lib/community/training/easy/aMountainOfAMoleHill/aMountainOfAMoleHill.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* The "A mountain of a mole hill" puzzle.
3+
* @see {@link https://www.codingame.com/ide/puzzle/a-mountain-of-a-mole-hill}
34
*/
45
function execute(readline) {
56
for (let i = 0; i < 16; i++) {

lib/community/training/easy/addEmUp/addEmUp.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* The "Add'em up" puzzle.
3+
* @see {@link https://www.codingame.com/ide/puzzle/addem-up}
34
*/
45
function execute(readline) {
56
const N = parseInt(readline());

lib/community/training/easy/asteroids/asteroids.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* The "Asteroids" puzzle.
3+
* @see {@link https://www.codingame.com/ide/puzzle/asteroids}
34
*/
45
function execute(readline) {
56
var inputs = readline().split(' ');

lib/community/training/easy/bankRobbers/bankRobbers.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* The "Bank robbers" puzzle.
3+
* @see {@link https://www.codingame.com/ide/puzzle/bank-robbers}
34
*/
45
function execute(readline) {
56
const R = parseInt(readline());

lib/community/training/easy/benfordsLaw/benfordsLaw.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* The "Benford's law" puzzle.
3+
* @see {@link https://www.codingame.com/ide/puzzle/benfords-law}
34
*/
45
function execute(readline) {
56
const N = parseInt(readline());

lib/community/training/easy/binaryImage/binaryImage.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* The "Binary image" puzzle.
3+
* @see {@link https://www.codingame.com/ide/puzzle/binary-image}
34
*/
45
function execute(readline) {
56
const h = parseInt(readline());

0 commit comments

Comments
 (0)