Browse Source

readme and docs

Kr Younger 5 years ago
parent
commit
710228f991
2 changed files with 23 additions and 10 deletions
  1. 19
    10
      .idea/workspace.xml
  2. 4
    0
      README.md

+ 19
- 10
.idea/workspace.xml View File

@@ -2,10 +2,6 @@
2 2
 <project version="4">
3 3
   <component name="ChangeListManager">
4 4
     <list default="true" id="3455511b-a100-4bbd-b07c-68f009bc8dbc" name="Default" comment="">
5
-      <change beforePath="" afterPath="$PROJECT_DIR$/DocumentationOnArrays/Array Reflections.pdf" />
6
-      <change beforePath="" afterPath="$PROJECT_DIR$/DocumentationOnArrays/Arrays (The Java™ Tutorials &gt; Learning the Java Language &gt; Language Basics).pdf" />
7
-      <change beforePath="" afterPath="$PROJECT_DIR$/DocumentationOnArrays/Chapter 10. Arrays.pdf" />
8
-      <change beforePath="" afterPath="$PROJECT_DIR$/DocumentationOnArrays/Core Java Volume 1 - FundamentalsArrays.pdf" />
9 5
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
10 6
       <change beforePath="$PROJECT_DIR$/README.md" afterPath="$PROJECT_DIR$/README.md" />
11 7
     </list>
@@ -53,8 +49,8 @@
53 49
         <entry file="file://$PROJECT_DIR$/README.md">
54 50
           <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
55 51
             <state split_layout="SPLIT">
56
-              <first_editor relative-caret-position="238">
57
-                <caret line="14" column="17" lean-forward="false" selection-start-line="14" selection-start-column="17" selection-end-line="14" selection-end-column="17" />
52
+              <first_editor relative-caret-position="306">
53
+                <caret line="18" column="0" lean-forward="true" selection-start-line="18" selection-start-column="0" selection-end-line="18" selection-end-column="0" />
58 54
                 <folding />
59 55
               </first_editor>
60 56
               <second_editor />
@@ -175,6 +171,7 @@
175 171
     <property name="last_opened_file_path" value="$PROJECT_DIR$" />
176 172
     <property name="jdk.selected.JAVA_MODULE" value="1.8" />
177 173
     <property name="com.intellij.testIntegration.createTest.CreateTestDialog.defaultLibrary" value="JUnit4" />
174
+    <property name="GO_FMT" value="false" />
178 175
   </component>
179 176
   <component name="RecentsManager">
180 177
     <key name="CreateTestDialog.RecentsKey">
@@ -293,12 +290,20 @@
293 290
       <updated>1543955860758</updated>
294 291
       <workItem from="1543955862749" duration="2347000" />
295 292
       <workItem from="1543958998826" duration="113000" />
296
-      <workItem from="1544020724645" duration="492000" />
293
+      <workItem from="1544020724645" duration="762000" />
297 294
     </task>
295
+    <task id="LOCAL-00001" summary="readme and docs">
296
+      <created>1544021313039</created>
297
+      <option name="number" value="00001" />
298
+      <option name="presentableId" value="LOCAL-00001" />
299
+      <option name="project" value="LOCAL" />
300
+      <updated>1544021313039</updated>
301
+    </task>
302
+    <option name="localTasksCounter" value="2" />
298 303
     <servers />
299 304
   </component>
300 305
   <component name="TimeTrackingManager">
301
-    <option name="totallyTimeSpent" value="2952000" />
306
+    <option name="totallyTimeSpent" value="3222000" />
302 307
   </component>
303 308
   <component name="ToolWindowManager">
304 309
     <frame x="242" y="45" width="1538" height="962" extended-state="0" />
@@ -338,6 +343,10 @@
338 343
   <component name="VcsContentAnnotationSettings">
339 344
     <option name="myLimit" value="2678400000" />
340 345
   </component>
346
+  <component name="VcsManagerConfiguration">
347
+    <MESSAGE value="readme and docs" />
348
+    <option name="LAST_COMMIT_MESSAGE" value="readme and docs" />
349
+  </component>
341 350
   <component name="XDebuggerManager">
342 351
     <breakpoint-manager />
343 352
     <watches-manager />
@@ -440,8 +449,8 @@
440 449
     <entry file="file://$PROJECT_DIR$/README.md">
441 450
       <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
442 451
         <state split_layout="SPLIT">
443
-          <first_editor relative-caret-position="238">
444
-            <caret line="14" column="17" lean-forward="false" selection-start-line="14" selection-start-column="17" selection-end-line="14" selection-end-column="17" />
452
+          <first_editor relative-caret-position="306">
453
+            <caret line="18" column="0" lean-forward="true" selection-start-line="18" selection-start-column="0" selection-end-line="18" selection-end-column="0" />
445 454
             <folding />
446 455
           </first_editor>
447 456
           <second_editor />

+ 4
- 0
README.md View File

@@ -14,6 +14,9 @@ on google.
14 14
 At this point you should be able to write up these methods without searching for code patterns
15 15
 on StackOverflow.
16 16
 
17
+At this point in the cohort, you should be able to glance at the problem, write a couple tests,
18
+nd then implement the method.
19
+
17 20
 ### For each problem.
18 21
 
19 22
 For each of these problems, you need to write the method itself, and two tests for each method. 
@@ -82,3 +85,4 @@ If you need an array of Doubles use this one.
82 85
 Double[] spiffyHandyDoubleArray = new Double[] {1.0, 0.5, 3.6, 38.4, 17.3, 62.0, 9.0, 3.375, 0, 3.14159};
83 86
 ```
84 87
 
88
+__But, if you don't like these arrays, feel free to make your own.__