This file contains hidden or 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
package com.example.geoquiz | |
import androidx.appcompat.app.AppCompatActivity | |
import android.os.Bundle | |
import android.util.Log | |
import android.view.View | |
import android.widget.Button | |
import android.widget.ImageButton | |
import android.widget.TextView | |
import android.widget.Toast |
This file contains hidden or 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
package com.company; | |
public class DobbelListeTab | |
{ | |
private int led = 0; | |
private int start = -1; | |
private int[] Neste = new int[12]; | |
private int[] Forrige = new int[12]; | |
private int[] Verdi = new int[12]; |
This file contains hidden or 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 bst | |
{ | |
public class BinaryTree | |
{ | |
private Node Root; | |
public BinaryTree() | |
{ |
This file contains hidden or 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
namespace bst | |
{ | |
public class BinaryTree | |
{ | |
private Node Root; | |
public BinaryTree() | |
{ | |
Root = new Node(); | |
Root.Value = -1; |
This file contains hidden or 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
#ifndef ASSIGNMENT_3_1_APP_H | |
#define ASSIGNMENT_3_1_APP_H | |
#include "menu.h" | |
class App | |
{ | |
public: | |
App() |
This file contains hidden or 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
import React from "react"; | |
import ReactDOM from "react-dom"; | |
import Hello from "./Hello"; | |
ReactDOM.render( | |
<Hello name="World" />, | |
document.getElementById("app") | |
); | |
This file contains hidden or 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
const webpack = require('webpack'); | |
const path = require('path'); | |
const APP_DIR = path.resolve(__dirname, 'src'); | |
const BUILD_DIR = path.resolve(__dirname, 'build'); | |
const PUBLIC_DIR = path.resolve(__dirname,'public'); | |
const config = { | |
entry: APP_DIR + '/HelloWorld.js', | |
devServer: { |