mirror of https://github.com/01-edu/public.git
OGordoo
5 years ago
1 changed files with 65 additions and 0 deletions
@ -0,0 +1,65 @@
|
||||
#### Functional Project Questions |
||||
|
||||
##### Try bad example 00 (github.com/public/subject/badexample00.md). |
||||
`ERROR` |
||||
###### Does the program prints the value above? |
||||
##### Try bad example 01 (github.com/public/subject/badexample01.md). |
||||
`ERROR` |
||||
###### Does the program prints the value above? |
||||
##### Try bad example 02 (github.com/public/subject/badexample02.md). |
||||
`ERROR` |
||||
###### Does the program prints the value above? |
||||
##### Try bad example 03 (github.com/public/subject/badexample03.md). |
||||
`ERROR` |
||||
###### Does the program prints the value above? |
||||
##### Try bad example 04 (github.com/public/subject/badexample04.md). |
||||
`ERROR` |
||||
###### Does the program prints the value above? |
||||
##### Try bad format (github.com/public/subject/badformat.md). |
||||
`ERROR` |
||||
###### Does the program prints the value above? |
||||
##### Try good example 00 (github.com/public/subject/goodexample00.md). |
||||
###### Does the result contain 0 empty spaces (0 '.') ? |
||||
##### Try good example 01 (github.com/public/subject/goodexample01.md). |
||||
###### Does the result contain 9 empty spaces (9 '.') ? |
||||
##### Try good example 02 (github.com/public/subject/goodexample02.md). |
||||
###### Does the result contain 4 empty spaces (4 '.') ? |
||||
##### Try good example 03 (github.com/public/subject/goodexample03.md). |
||||
###### Does the result contain 5 empty spaces (5 '.') ? |
||||
##### Try hard example (github.com/public/subject/hardexam.md). |
||||
###### Does the result contain 1 empty spaces (1 '.') ? |
||||
##### Are all of the Tetrominos contained in the test file, present in the output? |
||||
##### Different characters correspond to different Tetrominos? |
||||
##### Does one Tetromino has only one character? |
||||
|
||||
#### Basic |
||||
|
||||
###### *Has the code passed the formatting? (gofmt, goimports) |
||||
|
||||
###### *Does the program avoid the use of packages? (github.com/01-edu/public/blob/master/subjects/good-practices.en.md) |
||||
###### *Does the code present commenting ? |
||||
###### *Does the code present documentation? |
||||
###### *Does it present consistent indentation? |
||||
###### *Does the code avoid obvious comments (no over information)? |
||||
###### *Does the code have a consistent naming scheme (camelCase, under_scores)? |
||||
###### *Does the code obey the principles "DRY" (Don't Repeat Yourself) or "DIE" (Duplication is Evil)? |
||||
###### *Does the code obey the principal "KISS" (Keep It Simple, Stupid)? |
||||
###### *Does the code obey the principle YAGNI (You Aren’t Gonna Need It)? |
||||
###### *Does the code obey the principle SOC (Separation of Concerns)? |
||||
###### *Does the code avoid deep nesting (if in ifs, forest of ifs)? |
||||
###### *Does the code present a good file and folder organization? |
||||
###### *Does it present a good separation of Code and Data? |
||||
###### *Does the go code follow the go recommendations? ((https://golang.org/doc/effective_go.html), (https://golang.org/cmd/gofmt/), (https://godoc.org/golang.org/x/tools/cmd/goimports), (https://goinbigdata.com/goimports-vs-gofmt/)) |
||||
|
||||
###### *Is there a test file for this code? |
||||
###### *Are the tests checking each case? |
||||
|
||||
###### *Is the error handled, is it error free? |
||||
|
||||
###### *Does the project runs quickly and effectively (Favoring of recursivity, no unnecessary data requests, etc.)? |
||||
|
||||
#### Social |
||||
|
||||
###### *Can the project be used for a common good? |
||||
###### *Did you learn anything from this project? |
||||
###### *Would you recommend/nominate this program as an example for the rest of the school? |
Loading…
Reference in new issue