This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Assignment research for balanced binary trees that tends to be more difficult | |
// than just implementing binary search trees. Here’s an example in PHP. | |
class Node | |
{ | |
protected $_parent = null; | |
protected $_left = null; | |
protected $_right = null; | |
protected $_key; | |
protected $_data = null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Module Four Assignment | |
using System; | |
namespace ModuleFourAssignment | |
{ | |
// Create a struct to represent a student | |
struct Student | |
{ | |
public string firstName; | |
public string lastName; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace ModuleThreeAssignment | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
GetStudentInformation(); | |
GetTeacherInformation(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Module Three Assignment | |
using System; | |
namespace ModuleThreeAssignment | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// From within Main() call each of the methods to prompt for input from a user. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Module Two Assignment | |
using System; | |
namespace ModuleTwoAssignment | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
for (int column = 0; column < 8; column++) // will create 8 row x 8 column pattern |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Module One Assignment | |
using System; | |
namespace studentInformation | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Create variables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
namespace BasicLinqExample.UI | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Grades; | |
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Grades.Tests | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Grades | |
{ | |
class Program | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask | |
from sqlalchemy import create_engine | |
from sqlalchemy.orm import sessionmaker | |
from database_setup import Base, Xblock, CaliperItem | |
app = Flask(__name__) | |
engine = create_engine('sqlite:///lti_compliance.db') | |
Base.metadata.bind = engine |
NewerOlder