From 79aaaa412419e552ea9ccd8cedbb2bec39d74bf6 Mon Sep 17 00:00:00 2001 From: Xevion Date: Sun, 15 Sep 2019 17:49:45 -0500 Subject: [PATCH] Update READMEs --- README.md | 4 +++- uil/uil-practice-armstrong/UIL.md | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eb1cc09..dbc0915 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # contest -Simple project for managing contests I've tested the waters in. Done primarily in Python as of now (Sep 9, 2019). \ No newline at end of file +This repository manages my contest answers, UIL explanations and more. + +Currently done in Python and Java. \ No newline at end of file diff --git a/uil/uil-practice-armstrong/UIL.md b/uil/uil-practice-armstrong/UIL.md index eb027be..ef39864 100644 --- a/uil/uil-practice-armstrong/UIL.md +++ b/uil/uil-practice-armstrong/UIL.md @@ -1,5 +1,7 @@ # UIL Eligibility Packet +Question 1-26 are done in full. From then on, only harder problems will be explained at much lighter levels to save time while completing this packet. + ## Question 1 This can be guessed on pretty easily by analyzing the magnitudes of the powers. Every number here is within a mildly close range of eachother, and the highest numbers have some of the *lowest* powers, so we can assume that the one with the highest power will be the largest when evaluated. @@ -193,7 +195,7 @@ Pre-increment `dragon.level++` The final equation looks like `4 + 5 + 5 = 14`. - `x = 4 and y = 6` in the end, however. + `x = 4 and y = 6` in the end. ## Question 14 @@ -437,10 +439,10 @@ Matches! ## Question 26 -This is a rather long problem, so let's split it up into the patrs. +This is a rather long problem, so let's split it up into parts. ### Class X Class X is a implementation of the Comparable Interface, and is essentially a method for comparing Strings when sorted. Focus on the `compareTo` method. -The `compareTo` method \ No newline at end of file +The `compareTo` method is how comparables "compare", and it returns a integer value to representation how it should be placed in the array. The array is sorted in descending order when `Collections.sort` is called on it. \ No newline at end of file