Skip to content

Commit

Permalink
README for coding_freshman
Browse files Browse the repository at this point in the history
  • Loading branch information
Srutay authored Sep 28, 2024
1 parent 87af2b7 commit 9e3ca24
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions coding_freshman/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# CODING CHALLENGE 💻
<a href="https://github.com/Spectrum-CETB/Hacktober-Fest-2024/tree/main/coding_freshman
"><img src="https://img.shields.io/badge/Coding%20-Challenge-blue.svg"/></a>
<a href="https://github.com/Spectrum-CETB/HacktoberFest-2024/tree/main/coding_freshmen
"><img src="https://img.shields.io/badge/Problem%20-Solving-purple.svg"/></a>

Glad u made it up here,now we assume you have been starting your coding journey and so consider this place next to best to hone up your problem solving skills.
Below are contribution guidelines which will help you to participate in this challenge.


## Contribution Guidelines📃



### 1. Contribution Specifications

#### `Folder` Creation
Create a `README.md` file in your folder, example `YOUR_NAME/README.md` and also add your solution file
(**Choose any one language and at max two**).You should add your solution folder to the language specific folders.
For eg : if you come up with a solution using python, add your solution folder to PYTHON directory(`./PYTHON/YOUR_NAME/QUESTION_NAME.py`)

- `YOUR_NAME/QUESTION_NAME.cpp` **C++**

- `YOUR_NAME/QUESTION_NAME.c` **C**

- `YOUR_NAME/QUESTION_NAME.java` **Java**

- `YOUR_NAME/QUESTION_NAME.py` **Python**


#### `README.md` Specification / Template
````markdown
# <Title of the Problem>
< description of the problem >

# Problem Explanation 🚀
Describe the explanation in your words, which can be too precise and short.

# Your logic 🤯
* Approach
* Own test cases if any
* Code Structure and Libraries used

# Time Complexity and Space Complexity
```cpp
Example

// Time Complexity -> O(n)
// Space Complexity -> O(1)

```
````

### 2. Naming Convention

Programming should keep the naming convention rule of each programming language.



### 3. List of Questions

* Below are the list of questions related to different topics,altogether covering the entirity of coding fundamentals.
* Question links will be disabled as soon as we will be recieving two valid Pr/Mrs for each question.
* You are advised to solve at max of 3 questions from the given list,so be the first one to crack the question.
* Questions list will be updated if a particular question has reached its pr/mr limit.

| Question Status | Name | Link | Question Tags | C | C++ | Java | Python |
| :---------------: | :---------------: | :---------------: | :---------------: | :---------------: | :---------------: | :---------------: | :---------------: |
| <ul><li>[ ] Completed</li></ul> | 2D_ARRAY_SUM | [Link](https://drive.google.com/file/d/1gVeQRzMZrGXtFGpAVtfBv56GXVIt4Pjf/view) | `Array` `Mathematics` | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |
| <ul><li>[ ] Completed</li></ul> | ANAGRAMS | [Link](https://drive.google.com/file/d/1tmnXbLeVbIjcZihdXgUGxzLiFOgD4-Gs/view?usp=sharing) | `String` `Sorting` | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |
| <ul><li>[ ] Completed</li></ul> | MAJORITY_ELEMENT | [Link](https://drive.google.com/file/d/1E4q1RX536unm_SE7xVehQ1dw4c3HGs2M/view?usp=sharing) | `Array` `Mathematics`| <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |
| <ul><li>[ ] Completed</li></ul> | MAXIMUM_SUM | [Link](https://drive.google.com/file/d/1V1LbMO1KkrZEArrYrp-Ar9Ii4JXGGzAv/view) | `Array` `Mathematics` | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |
| <ul><li>[ ] Completed</li></ul> | PATTERN_FINDER | [Link](https://drive.google.com/file/d/1RQeqbizRf-KZYrKD_RvuzCPW2AMWEELI/view?usp=sharing) | `Patterns` `Strings` `Sorting` | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |
| <ul><li>[ ] Completed</li></ul> | PIVOT_SUM | [Link](https://drive.google.com/file/d/1gie49B5n81RA9r4_UfCtUYRQbrKvxOnd/view) | `Array` `Mathematics` | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |
| <ul><li>[ ] Completed</li></ul> | PRODUCT_FINDER | [Link](https://drive.google.com/file/d/1fPHUd6enWsuzTXRHr0H1dxK9LlQkH_he/view?usp=sharing) | `Array` `Mathematics` | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |
| <ul><li>[ ] Completed</li></ul> | PROFICIENT_TRADER | [Link](https://drive.google.com/file/d/1KMEmmyUNhfrralpwkaFqW8J0eeSH8PGQ/view?usp=sharing) | `Array` `Mathematics` | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |
| <ul><li>[ ] Completed</li></ul> | ROMAN_TO_DECIMAL | [Link](https://drive.google.com/file/d/1B4EIxEEYfNq44vzfH6E4eEpxLhyGAitW/view?usp=sharing) | `Strings` `Patterns` | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |
| <ul><li>[ ] Completed</li></ul> | SORT_01 | [Link](https://drive.google.com/file/d/1P-RfuH6V1WQ4r1iz2ujzbm_xG203yeFT/view?usp=sharing) | `Array` `Sorting` `Binary` | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> | <ul><li>[ ] Merged</li></ul> |

0 comments on commit 9e3ca24

Please sign in to comment.