Skip to content
View bootler's full-sized avatar
Block or Report

Block or report bootler

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. fullstack-solutions fullstack-solutions Public

    A repository of problem solutions and completed projects for the App Academy Open - Full Stack Online course.

    Ruby

  2. job-ready-pages job-ready-pages Public

    Web page templates created as part of the Get Job Ready project

    CSS

  3. react-four react-four Public

    Connect four browser game built with React

    JavaScript 1

  4. bst_validate.rb bst_validate.rb
    1
    def is_valid_bst(root)
    2
        return true if !root
    3
        if valid_bt?(root.left, root.val, true) && valid_bt?(root.right, root.val, false)
    4
            return true && is_valid_bst(root.left) && is_valid_bst(root.right)
    5
        end