Giter VIP home page Giter VIP logo

cs-1.3-core-data-structures's Introduction

cs-1.3-core-data-structures's People

Watchers

 avatar  avatar

cs-1.3-core-data-structures's Issues

Submission 4: Hash Tables and article draft

  1. Hash Table - (Passes all tests)
  • It looks good, the only I would say change this line to make it more pythonic.
for pair in key_value_pairs:
    self.set(pair[0], pair[1])

to this

for key, value in key_value_pairs:
            self.set(key, value)
  1. Article
  • Great read. you might want to change your title to make it unique. because there are so many articles has the same title. but its is just a recommendation

Submission 1: Number bases and binary search

  1. Number bases:
    Excellent work. Good documentation and comments.
  2. Binary search:
    Your code looks good and working all well. But I recommend you look at how your peers implemented binary search, seems like your implementation a bit too complicated. You are using a little more checks: if clause in your code.

Submission 3: Linked List, Stacks & Queue

Good work, everything looks really good. But it seems you tried to write a test for deque, as of now it is failing, but it is not required to pass the submission. So you are good.

Submission 5: Trees and Tree traversal

  • Everything looks good, you have all (DFS) traversals are implemented recursively, try to do them iteratively. Great work on all the docstring and helper function implementations.

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.