Code Monkey home page Code Monkey logo

islandremover's Introduction

Given some matrix of M x N dimensions filled with 1 or 0:

Complete the file islands.py with the function removeIslands that should return a matrix without islands.

We define an island as a 1 that cannot be connected horizontally or vertically with a group of 1's that reach the matrix border.

To test the solution just run ./check_solution.sh that will pass 5 different matrix and check if the output is correct or not (remember, blank is good).

Fork this to a public repository and send an email to [email protected] when finished with the repo link.

For example:

1 - Given this matrix.

[1, 0, 1, 0, 0]
[0, 1, 0, 1, 1]
[0, 1, 0, 1, 0]
[1, 0, 1, 1, 0]
[1, 0, 0, 1, 0]

1 - Should return this matrix.

[1, 0, 1, 0, 0]
[0, 0, 0, 1, 1]
[0, 0, 0, 1, 0]
[1, 0, 1, 1, 0]
[1, 0, 0, 1, 0]

2 - Given this matrix.

[1, 0, 0, 0, 0, 0]
[0, 1, 0, 1, 1, 1]
[0, 0, 1, 0, 1, 0]
[1, 1, 0, 0, 1, 0]
[1, 0, 1, 1, 0, 0]
[1, 0, 0, 0, 0, 1]

2 - Should return this matrix.

[1, 0, 0, 0, 0, 0]
[0, 0, 0, 1, 1, 1]
[0, 0, 0, 0, 1, 0]
[1, 1, 0, 0, 1, 0]
[1, 0, 0, 0, 0, 0]
[1, 0, 0, 0, 0, 1]

islandremover's People

Contributors

homsaes avatar julianmelero avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.