-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add icons and add coding ninjas contents
- Loading branch information
Akash Singh
committed
Sep 9, 2023
1 parent
1c05645
commit b6e8a72
Showing
65 changed files
with
483 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -273,5 +273,5 @@ p { | |
|
||
/* Overflow Texts Truncation */ | ||
.md-nav__link { | ||
white-space: nowrap; | ||
white-space: normal; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
var feedback = document.forms.feedback | ||
feedback.addEventListener("submit", function(ev) { | ||
ev.preventDefault() | ||
|
||
/* Retrieve page and feedback value */ | ||
var page = document.location.pathname | ||
var data = ev.submitter.getAttribute("data-md-value") | ||
|
||
/* Send feedback value */ | ||
console.log(page, data) | ||
}) |
This file was deleted.
Oops, something went wrong.
99 changes: 99 additions & 0 deletions
99
...rces/CN_Series/Phase1/Aptitude/Logical_Reasoning/Module1/Alphanumeric_Series.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
!!! success "" | ||
## 1. Find the Next One | ||
!!! tip "" | ||
???+ question "Find the Next One" | ||
<h2> | ||
**2, A, 9, B, 6, C, 13, D, ? (Infosys - 2019)** | ||
|
||
- [ ] 9 | ||
- [X] 10 | ||
- [ ] E | ||
- [ ] 15 | ||
??? abstract "Explanation" | ||
In this sequence, a number is followed by an alphabet and vice versa. Let's focus on the number pattern: | ||
|
||
- Start with 2. | ||
- Add 7 to get the next number: 2 + 7 = 9. | ||
- Subtract 3 to get the next number: 9 - 3 = 6. | ||
- Add 7 again: 6 + 7 = 13. | ||
- Subtract 3: 13 - 3 = 10. | ||
|
||
So, the next element in the sequence is: **10** | ||
|
||
## 2. Find the next alphanumeric code | ||
!!! success "" | ||
???+ question "Find the next alphanumeric code" | ||
<h2> | ||
**2A11, 2D13, 4G17,? (IBM - 2017)** | ||
|
||
- [X] 12J23 | ||
- [ ] 48M29 | ||
- [ ] 36I29 | ||
- [ ] 8E15 | ||
??? abstract "Explanation" | ||
1. **2A11:** | ||
- The number starts at 2. | ||
- The letter 'A' is there. | ||
- The two digits are 11. | ||
- To go from 2A11 to 2D13: | ||
- Multiply the number by 1 (2 * 1 = 2). | ||
- Move the letter forward in the alphabet by 3 places (A + 3 = D). | ||
- Increase the two digits by 2 (11 + 2 = 13). | ||
|
||
2. **2D13:** | ||
- The number is now 2. | ||
- The letter 'D' is there. | ||
- The two digits are 13. | ||
- To go from 2D13 to 4G17: | ||
- Multiply the number by 2 (2 * 2 = 4). | ||
- Move the letter forward in the alphabet by 3 places (D + 3 = G). | ||
- Increase the two digits by 4 (13 + 4 = 17). | ||
|
||
3. **4G17:** | ||
- The number is now 4. | ||
- The letter 'G' is there. | ||
- The two digits are 17. | ||
- To find the next element: | ||
- Multiply the number by 3 (4 * 3 = 12). | ||
- Move the letter forward in the alphabet by 3 places (G + 3 = J). | ||
- Increase the two digits by 6 (17 + 6 = 23). | ||
|
||
So, the next element in the sequence is: **12J23** | ||
|
||
## 3. Find the missing value | ||
!!! info "" | ||
???+ question "Find the missing value" | ||
<h2> | ||
**ACE, ?, MOQ, SUW(last term) (Wipro)** | ||
|
||
- [ ] GIL | ||
- [ ] EFH | ||
- [X] GIK | ||
- [ ] FHJ | ||
??? abstract "Explanation" | ||
|
||
## 4. Lowest digit product | ||
!!! question "" | ||
???+ question "Lowest digit product" | ||
<h2> | ||
**867 209 242 283 543 Given this series: <br> When the digits within the number are multiplied with each other, the product of which number is the lowest?** | ||
|
||
- [ ] 867 | ||
- [X] 209 | ||
- [ ] 242 | ||
- [ ] 283 | ||
??? abstract "Explanation" | ||
|
||
## 5. Find the character | ||
!!! danger "" | ||
???+ question "Find the character" | ||
<h2> | ||
**Study the following arrangement carefully and answer the question that follows:**<br> | ||
**S K 6 £ Q 2 R * C F 8 E $ G 2 # 4 9 L N 3 U V 5 Y α B 7 W 9**<br> | ||
**Which of the following letters, numbers, or symbols will be third to the left or a fifth of the left?** | ||
|
||
- [ ] Q | ||
- [ ] S | ||
- [X] 6 | ||
- [ ] 2 | ||
??? abstract "Explanation" |
77 changes: 77 additions & 0 deletions
77
...rces/CN_Series/Phase1/Aptitude/Logical_Reasoning/Module1/Artificial_Language.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
!!! info "" | ||
## 1. Houseguest | ||
!!! danger "" | ||
???+ question "Houseguest" | ||
<h2> | ||
**Here are some words translated from an artificial language.**<br> | ||
morpirquat means birdhouse <br> | ||
beelmorpir means bluebird <br> | ||
beelclak means bluebell <br><br> | ||
Which word could mean "houseguest"? | ||
|
||
- [ ] Morpirhunde | ||
- [ ] Beelmoki | ||
- [x] Quathunde | ||
- [ ] Clakquat | ||
??? abstract "Explanation" | ||
|
||
## 2. Holiday | ||
!!! success "" | ||
???+ question "Holiday" | ||
<h2> | ||
fenplac means filmy holiday <br> | ||
Placston means holiday beach <br> | ||
Stonrum means beach perform <br> | ||
Rumfen means perform filmy <br><br> | ||
**Which word means “holiday”?** | ||
|
||
- [x] plac | ||
- [ ] rum | ||
- [ ] ston | ||
- [ ] fen | ||
??? abstract "Explanation" | ||
|
||
## 3. Lighthouse | ||
!!! tip "" | ||
???+ question "Lighthouse" | ||
<h2> | ||
Mallonpiml means blue ligh<br> | ||
Mallontifl means blueberry<br> | ||
Arpantifl means rasberry<br><br> | ||
**Which word means “lighthouse”? (Tech Mahindra - 2018)** | ||
|
||
- [ ] Tiflmallon | ||
- [ ] Pimlarpan | ||
- [ ] Mallonarpan | ||
- [x] Pimldoken | ||
??? abstract "Explanation" | ||
|
||
## 4. Plantation | ||
!!! abstract "" | ||
???+ question "Plantation" | ||
<h2> | ||
Creektulo means tree plantation <br> | ||
creekfuos means tree mutation <br> | ||
fuosseed means mutation sapling <br><br> | ||
**Which word means “plantation”? (Newgen - 2020)** | ||
|
||
- [ ] Creek | ||
- [x] Tulo | ||
- [ ] Fuos | ||
- [ ] Seed | ||
??? abstract "Explanation" | ||
|
||
## 5. Happiness | ||
!!! note "" | ||
???+ question "Happiness" | ||
<h2> | ||
jalkamofti means happy birthday <br> | ||
moftihoze means birthday party <br> | ||
mentogunn means goodness <br><br> | ||
**Which word could mean "happiness"? (Sapient - 2019)** | ||
|
||
- [x] jalkagunn | ||
- [ ] Mentohoze | ||
- [ ] Moftihoze | ||
- [ ] hozemento | ||
??? abstract "Explanation" |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
???+ success "Coding Ninjas Series (Placement Preparation)" | ||
??? tip "Phase 1" | ||
??? abstract "1. Aptitude" | ||
??? Example "1.1. Logical Reasoning" | ||
??? note "Module 1" | ||
!!! pied-piper "" | ||
[Alphanumeric Series](Phase1/Aptitude/Logical_Reasoning/Module1/Alphanumeric_Series.md) | ||
!!! pied-piper "" | ||
[Artificial Language](Phase1/Aptitude/Logical_Reasoning/Module1/Artificial_Language.md) |
4 changes: 4 additions & 0 deletions
4
...resources/codepoint/striver_a2z_dsa_sheet_solution/step01/step1.1/Data-Types.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/numeric-2-circle | ||
--- | ||
|
||
<!-- ### Integer Types | ||
| Type Name | Bytes | Range of Values | | ||
|
4 changes: 4 additions & 0 deletions
4
..._resources/codepoint/striver_a2z_dsa_sheet_solution/step01/step1.1/For-Loops.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/numeric-6-circle | ||
--- | ||
|
||
``` mermaid | ||
graph LR | ||
|
4 changes: 4 additions & 0 deletions
4
..._resources/codepoint/striver_a2z_dsa_sheet_solution/step01/step1.1/Functions.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
...s/codepoint/striver_a2z_dsa_sheet_solution/step01/step1.1/If-Else-Statements.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/numeric-3-circle | ||
--- | ||
|
||
``` mermaid | ||
graph LR | ||
|
4 changes: 4 additions & 0 deletions
4
...ces/codepoint/striver_a2z_dsa_sheet_solution/step01/step1.1/Switch-Statement.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/numeric-4-circle | ||
--- | ||
|
||
``` mermaid | ||
graph LR | ||
A(Start) --> B[Expression]; | ||
|
6 changes: 6 additions & 0 deletions
6
...rces/codepoint/striver_a2z_dsa_sheet_solution/step01/step1.1/Time-Complexity.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
--- | ||
hide: | ||
- toc | ||
icon: material/numeric-9-circle | ||
--- | ||
|
||
<style> | ||
#credit { | ||
text-align: right; | ||
|
6 changes: 3 additions & 3 deletions
6
...es/codepoint/striver_a2z_dsa_sheet_solution/step01/step1.1/User_Input-Output.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<!-- --- | ||
icon: material/keyboard | ||
--- --> | ||
--- | ||
icon: material/numeric-1-circle | ||
--- | ||
|
||
``` mermaid | ||
graph LR | ||
|
4 changes: 4 additions & 0 deletions
4
...epoint/striver_a2z_dsa_sheet_solution/step01/step1.1/What-are-Arrays-Strings.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
...esources/codepoint/striver_a2z_dsa_sheet_solution/step01/step1.1/While-Loops.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/numeric-7-circle | ||
--- | ||
|
||
# While Loops | ||
``` mermaid | ||
graph LR | ||
|
4 changes: 4 additions & 0 deletions
4
...int/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-1.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/square | ||
--- | ||
|
||
# 1. Square Star Pattern | ||
|
||
!!! example "Example" | ||
|
4 changes: 4 additions & 0 deletions
4
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-10.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: octicons/triangle-right-24 | ||
--- | ||
|
||
# 10. Triangle Star Pattern | ||
|
||
!!! example "Example" | ||
|
6 changes: 5 additions & 1 deletion
6
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-11.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-12.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-13.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/set-square | ||
--- | ||
|
||
# 13. Triangle Digit Pattern | ||
|
||
!!! example "Example" | ||
|
4 changes: 4 additions & 0 deletions
4
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-14.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/set-square | ||
--- | ||
|
||
# 14. Triangle Character Pattern | ||
|
||
!!! example "Example" | ||
|
4 changes: 4 additions & 0 deletions
4
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-15.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/triangle-down | ||
--- | ||
|
||
# 15. Reverse Triangle Character Pattern | ||
|
||
!!! example "Example" | ||
|
4 changes: 4 additions & 0 deletions
4
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-16.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/set-square | ||
--- | ||
|
||
# 16. Triangle Character Pattern | ||
|
||
!!! example "Example" | ||
|
4 changes: 4 additions & 0 deletions
4
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-17.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/dots-triangle | ||
--- | ||
|
||
# 17. Triangle Character Pattern | ||
|
||
!!! example "Example" | ||
|
4 changes: 4 additions & 0 deletions
4
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-18.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/set-square | ||
--- | ||
|
||
# 18. Triangle Character Pattern | ||
|
||
!!! example "Example" | ||
|
4 changes: 4 additions & 0 deletions
4
...nt/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-19.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/cards-playing-diamond | ||
--- | ||
|
||
# 19. Hollow Diamond Star Pattern | ||
|
||
!!! example "Example" | ||
|
4 changes: 4 additions & 0 deletions
4
...int/striver_a2z_dsa_sheet_solution/step01/step1.2/Pattern_Problems/Pattern-2.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
icon: material/set-square | ||
--- | ||
|
||
# 2. Triangle Star Pattern | ||
|
||
!!! example "Example" | ||
|
Oops, something went wrong.