Skip to content

Commit

Permalink
prettier auto formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebazhanov committed Nov 12, 2022
1 parent 3b6293f commit ee1308f
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
[![Telegram](https://badgen.net/badge/icon/telegram?icon=telegram&label)](https://t.me/+lCPxL7Kd7gVjMGM6)

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->

[![All Contributors](https://img.shields.io/badge/all_contributors-1222-orange.svg?style=flat-square)](#contributors-)

<!-- ALL-CONTRIBUTORS-BADGE:END -->

> This repository is for those looking for answers to the LinkedIn assessment quiz questions or willing to help others by contributing to the tests. Or possibly you would like to create your first pull request and be added as a contributor. Whatever is your goal - you are always welcome here! Feel free to use [online grammar checker](https://www.grammarly.com/) when you contribute!
Expand Down
2 changes: 1 addition & 1 deletion angular/angular-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ export class TruncatePipe implements PipeTransform {
- [ ] all of these answers
[How do I call an Angular 2 pipe with multiple arguments?] (https://stackoverflow.com/questions/36816788/how-do-i-call-an-angular-2-pipe-with-multiple-arguments)
#### Q61. Which Angular CLI command would you run to generate a UsersComponent and add it to the SharedModule (in file shared.module.ts in your application)?
- [ ] ng generate component --newModule=shared
Expand Down
2 changes: 1 addition & 1 deletion bash/bash-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1047,5 +1047,5 @@ cat > notes -
- [ ] It creates an empty file called "notes" and then exits.
- [ ] It outputs the contents of the "notes" file to the screen, and then deletes it.
- [X] It accepts text from the standard input and places it in the "notes" file.
- [x] It accepts text from the standard input and places it in the "notes" file.
- [ ] It appends text to an existing file called "notes."
3 changes: 2 additions & 1 deletion c-(programming-language)/c-(programming-language)-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ while(1)
{
long *bigArray = (long *) malloc(sizeof(long) * 1000);
memset(bigArray, 1000000, 1000);

(bigArray);
}
```
Expand Down Expand Up @@ -1327,6 +1327,7 @@ default:
```c
strcpy(str1, str2);
```
- [x] str1: "xyz" ; str2: "xyz"
- [ ] str1: "abc" ; str2: "xyz"
- [ ] str1: "xyz" ; str2: "abc"
Expand Down
2 changes: 1 addition & 1 deletion c-sharp/c-sharp-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -801,5 +801,5 @@ void MyFunction()
- [ ] None are true.
- [ ] string is a value type.
- [x] string is an alias for String

[Reference](https://stackoverflow.com/q/7074)
4 changes: 2 additions & 2 deletions issue_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ I'm submitting an ISSUE: please check one with "x"

- [ ] New question{'s} <!-- please attach screenshot or quiz text -->
- [ ] New assessment <!-- please double-check the repository for similar -->
- [ ] Missed questions/answers <!-- Please check the repository for a similar issue or PR before submitting -->
- [ ] Missed questions/answers <!-- Please check the repository for a similar issue or PR before submitting -->
- [ ] Request for new quiz/answers/...
- [ ] Documentation issue or request for ...
- [ ] ...
- [ ] ...
3 changes: 1 addition & 2 deletions python/python-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1835,7 +1835,6 @@ print ("foo" if (256).bit_length() > 8 else "bar")

[Reference](https://www.interviewbit.com/blog/pandas-vs-numpy/)


#### Q137. What do you need to do to install additional packages into Python?

- [ ] Use a C compiler like gcc or clang.
Expand Down Expand Up @@ -2377,7 +2376,7 @@ my_list = [2, 'apple', 3.5]
[ [ [ randint(1,100) for i in range(m) ] for j in range(n) ] for k in range(p) ]
```

- [x] m * n * p
- [x] m _ n _ p
- [ ] the greater value of (m,n,p)
- [ ] 1 million
- [ ] m + n + p

0 comments on commit ee1308f

Please sign in to comment.