#100DaysOfCode TODO - Round 1 - Dominic Gerweck
TODO
Status December 30, 2019
finish in 2019
- update my log!
- finish the web cert projects!
- get my portfolio online!
Challenges
KATA Arry.diff at codewars
Your goal in this kata is to implement a difference function, which subtracts one list from another and returns the result.
-
Details
It should remove all values from list a, which are present in list b.
Kata.ArrayDiff(new int[] {1, 2}, new int[] {1}) => new int[] {2}If a value is present in b, all of its occurrences must be removed from the other:
Kata.ArrayDiff(new int[] {1, 2, 2, 2, 3}, new int[] {2}) => new int[] {1, 3} -
Solution
Not finished jet!
public static int[] Solution (int[] a, int[] b) { int[] result = a; // not finished jet! // TODO : find solution for the KATA from codewars (Array.Diff) return result; }
Main Projects
-
Responsive Web Design Certification freeCodeCamp
- Tribute Page (online!)
```
- restyle the timeline section. (bootstrap) ```
- 2. Survey Form (started project)
- 3. Product Landing Page
- 4. Technical Documentation Page
- 5. Personal Portfolio Webpage (started project)
- Tribute Page (online!)
```