kevmoens / Ellabit

The interactive C# coding app to learn/practice coding.
MIT License
55 stars 21 forks source link

Add tags to challenges 46-60 #7

Closed kevmoens closed 1 year ago

kevmoens commented 1 year ago

On each challenge there is a property named Tags.

        private Dictionary<string, string> _tags = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase) { {"Math","Add"}, { "Level", "1" } };
        public Dictionary<string, string> Tags { get => _tags; set => _tags = value; }

Tags describe the type of coding being done in each challenge. In the code above is describing the challenge uses Math to Add and Level is 1.
You can add as many tags as you like to help describe the challenge. Add a Level tag to each challenge. Currently levels are described as: Level 1 = beginner concept Level 2 = Use of beginner concept with more detailed knowledge to code Level 3 = Something that requires in depth knowledge to code Level 4 = This is a complex challenge that will take more than 10 minutes to code for an advanced developer Level 5 = This is a senior developer that will take more than 15-20 minutes to code

wolf-361 commented 1 year ago

I was thinking of working on this but I have trouble with differentiating the levels, I mostly feel like its level 1 when I look at stuff. Could you give me some exemples on what differentiates them ?

kevmoens commented 1 year ago

I am thinking level 1 for all of these #46-60 would be appropriate.

wolf-361 commented 1 year ago

Ok great, I will work on this after issue #15

kevmoens commented 1 year ago

I added a note about a misspelling

wolf-361 commented 1 year ago

Sorry where did you add the note ? I haven't found it

kevmoens commented 1 year ago

It is in the pull request

Sent from my iPhone

On Oct 17, 2022, at 9:25 AM, Luc Allaire @.***> wrote:

 Sorry where did you add the note ? I haven't found it

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.